https://bugzilla.novell.com/show_bug.cgi?id=249676 dmueller@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pbaudis@novell.com ------- Comment #4 from dmueller@novell.com 2007-03-11 13:11 MST ------- I can not reproduce the report btw. I've tried on x86 and on x86_64. Anyway, a small testcase however triggers the report: #include <stdlib.h> #include <assert.h> #include <stdio.h> int main ( void ) { int r; char* p; p = malloc(1); assert(p); p[0] = '='; r = putenv(p); assert(r == 0); p = getenv("XYZZY"); printf("p = %p\n", p); return 0; } I guess glibc should be patched to not putenv() null length environment strings if it can't deal with it during getenv(). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.