<div dir="ltr"><div>To be up to good programming practices we should close the input even on the error paths on lines 1381, 1392 and 1400 (it can be stdin, but on exit it doesn't matter).<br>Scanner is sooo leaky, that pedantically closing read-only input file on every error path may seem a little bit useless, but it is the first nice step to get rid of the leaks and<br></div><div>errors from whatever tool Denis used to find this leak.<br><br></div><div>Cheers,<br></div><div>Marek<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Jun 20, 2015 at 12:54 AM, Bryce Harrington <span dir="ltr"><<a href="mailto:bryce@osg.samsung.com" target="_blank">bryce@osg.samsung.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Addresses this error reported by Denis Denisov:<br>
<br>
  [src/scanner.c:1415]: (error) Resource leak: input<br>
<br>
Signed-off-by: Bryce Harrington <<a href="mailto:bryce@osg.samsung.com">bryce@osg.samsung.com</a>><br>
---<br>
 src/scanner.c | 1 +<br>
 1 file changed, 1 insertion(+)<br>
<br>
diff --git a/src/scanner.c b/src/scanner.c<br>
index 7d8cfb9..2843d85 100644<br>
--- a/src/scanner.c<br>
+++ b/src/scanner.c<br>
@@ -1415,5 +1415,6 @@ int main(int argc, char *argv[])<br>
                        break;<br>
        }<br>
<br>
+       fclose(input);<br>
        return 0;<br>
 }<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.9.1<br>
<br>
_______________________________________________<br>
wayland-devel mailing list<br>
<a href="mailto:wayland-devel@lists.freedesktop.org">wayland-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/wayland-devel" rel="noreferrer" target="_blank">http://lists.freedesktop.org/mailman/listinfo/wayland-devel</a><br>
</font></span></blockquote></div><br></div>