CVSROOT: /cvs Module name: src Changes by: [email protected] 2010/07/05 12:54:33
Modified files:
usr.sbin/ypldap: ldapclient.c
Log message:
original `for' loop has bug `use after free'. At first iteration we are
checking h != NULL, then we free(h) and then we do `h = h->next', but `h' is
not valid anymore.
ok @krw
