Browse Source

[PATCH] powerpc: prevent stack corruption in call_prom_ret

Use the correct pointer to clear the memory of the return values,
to prevent stack corruption in the callers stackframe.

Signed-off-by: Olaf Hering <olh@suse.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Olaf Hering 19 years ago
parent
commit
ed1189b7e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/powerpc/kernel/prom_init.c

+ 1 - 1
arch/powerpc/kernel/prom_init.c

@@ -265,7 +265,7 @@ static int __init call_prom_ret(const char *service, int nargs, int nret,
 	va_end(list);
 	va_end(list);
 
 
 	for (i = 0; i < nret; i++)
 	for (i = 0; i < nret; i++)
-		rets[nargs+i] = 0;
+		args.args[nargs+i] = 0;
 
 
 	if (enter_prom(&args, RELOC(prom_entry)) < 0)
 	if (enter_prom(&args, RELOC(prom_entry)) < 0)
 		return PROM_ERROR;
 		return PROM_ERROR;