Plug memory leak in doLoadModule()

This commit is contained in:
Alan Coopersmith 2007-01-24 20:20:48 -08:00
parent 5abd50e37c
commit cf7ca9d09c

View File

@ -903,7 +903,7 @@ doLoadModule(const char *module, const char *path, const char **subdirlist,
* check the elements in the path
*/
if (PathIsAbsolute(module))
xstrdup(module);
found = xstrdup(module);
path_elem = pathlist;
while (!found && *path_elem != NULL) {
found = FindModule(m, *path_elem, subdirlist, patterns);