Plug memory leak in doLoadModule()
This commit is contained in:
parent
5abd50e37c
commit
cf7ca9d09c
|
@ -903,7 +903,7 @@ doLoadModule(const char *module, const char *path, const char **subdirlist,
|
||||||
* check the elements in the path
|
* check the elements in the path
|
||||||
*/
|
*/
|
||||||
if (PathIsAbsolute(module))
|
if (PathIsAbsolute(module))
|
||||||
xstrdup(module);
|
found = xstrdup(module);
|
||||||
path_elem = pathlist;
|
path_elem = pathlist;
|
||||||
while (!found && *path_elem != NULL) {
|
while (!found && *path_elem != NULL) {
|
||||||
found = FindModule(m, *path_elem, subdirlist, patterns);
|
found = FindModule(m, *path_elem, subdirlist, patterns);
|
||||||
|
|
Loading…
Reference in New Issue