Explorar el Código

fix from cmetcalf to make sure we clear the auxvt table before using it

Mike Frysinger hace 18 años
padre
commit
80cf5ec280
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      libc/misc/internals/__uClibc_main.c

+ 1 - 0
libc/misc/internals/__uClibc_main.c

@@ -296,6 +296,7 @@ void __uClibc_main(int (*main)(int, char **, char **), int argc,
 
 #ifdef __ARCH_USE_MMU__
     /* Pull stuff from the ELF header when possible */
+    memset(auxvt, 0x00, sizeof(auxvt));
     aux_dat = (unsigned long*)__environ;
     while (*aux_dat) {
 	aux_dat++;