GNOME Bugzilla – Bug 702320
Resource Leak in xmllint.c
Last modified: 2013-07-12 04:41:18 UTC
In Function streamFile Following code block: if (memory) { ------------Some Code ---------------- if ((fd = open(filename, O_RDONLY)) < 0) return; base = mmap(NULL, info.st_size, PROT_READ, MAP_SHARED, fd, 0) ; if (base == (void *) MAP_FAILED) return; -------Some Code --------------- if (base == (void *) MAP_FAILED) is true, it returns. But does not close the fd. A tool reports: "Handle variable "fd" going out of scope leaks the handle. " So, It should be like: if (base == (void *) MAP_FAILED){ close(fd); return;}
In the same file (xmllint.c) in function "parseAndPrintFile" There is similar type of bug at line number: 2226 (https://git.gnome.org/browse/libxml2/tree/xmllint.c) Patch for this is similar to above: if (base == (void *) MAP_FAILED){ close(fd); return;}
Okay, the leak is not really important as this is part of a standalone program and not within the library code. I fixed 3 areas where the problem could occur, and made sure errors were properly reported both as message and program exit value, https://git.gnome.org/browse/libxml2/commit/?id=b98c6a0ac6fc5ddd184498e34bf9deaecb0aa715 thanks ! Daniel