diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | elf/rtld.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 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 after the loop [Coverity CID 187]. @@ -2624,7 +2624,7 @@ process_envvars (enum mode *modep) } if (memcmp (envline, "POINTER_GUARD", 13) == 0) - GLRO(dl_pointer_guard) = envline[14] == '0'; + GLRO(dl_pointer_guard) = envline[14] != '0'; break; case 14: |