mirror of git://sourceware.org/git/glibc.git
* elf/rtld.c (process_envvars): Fix handling of LD_POINTER_GUARD.
Reported by genesh@comcast.net.
This commit is contained in:
parent
db67c2c98b
commit
0a21e40021
|
|
@ -1,5 +1,8 @@
|
||||||
2006-04-08 Ulrich Drepper <drepper@redhat.com>
|
2006-04-08 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/rtld.c (process_envvars): Fix handling of LD_POINTER_GUARD.
|
||||||
|
Reported by genesh@comcast.net.
|
||||||
|
|
||||||
* io/fts.c (fts_build): Call fts_lfree in the two error cases
|
* io/fts.c (fts_build): Call fts_lfree in the two error cases
|
||||||
after the loop [Coverity CID 187].
|
after the loop [Coverity CID 187].
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2624,7 +2624,7 @@ process_envvars (enum mode *modep)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (memcmp (envline, "POINTER_GUARD", 13) == 0)
|
if (memcmp (envline, "POINTER_GUARD", 13) == 0)
|
||||||
GLRO(dl_pointer_guard) = envline[14] == '0';
|
GLRO(dl_pointer_guard) = envline[14] != '0';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 14:
|
case 14:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue