diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-01-11 21:59:46 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-01-11 21:59:46 +0000 |
commit | 5976daa84301232da25e9cda415fa724aaef8eec (patch) | |
tree | bc4fdf8a96527f0272859e15d53982fdebe797f3 | |
parent | 5da418e92a0797f0ab81db571265300738179e0b (diff) | |
download | dlfcn-win32-r19.tar.gz dlfcn-win32-r19.tar.bz2 dlfcn-win32-r19.zip |
Clear ->next after creating nobject.r19
-rw-r--r-- | dlfcn.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -75,6 +75,7 @@ static void global_add( HMODULE hModule ) | |||
75 | return; | 75 | return; |
76 | 76 | ||
77 | pobject->next = nobject; | 77 | pobject->next = nobject; |
78 | nobject->next = NULL; | ||
78 | nobject->previous = pobject; | 79 | nobject->previous = pobject; |
79 | nobject->hModule = hModule; | 80 | nobject->hModule = hModule; |
80 | } | 81 | } |