[PATCH] spufs: initialize context correctly

the mfc member of a new context was not initialized to zero,
which potentially leads to wild memory accesses.

Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Dirk Herrendoerfer 2006-03-23 00:00:13 +01:00 коммит произвёл Paul Mackerras
Родитель 6df10a82f8
Коммит ca3e91cb0c
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -51,6 +51,7 @@ struct spu_context *alloc_spu_context(void)
ctx->ibox_fasync = NULL;
ctx->wbox_fasync = NULL;
ctx->mfc_fasync = NULL;
ctx->mfc = NULL;
ctx->tagwait = 0;
ctx->state = SPU_STATE_SAVED;
ctx->local_store = NULL;