Johannes Sixt venit, vidit, dixit 27.10.2009 08:13:
Laszlo Papp schrieb:
quoted
@@ -266,7 +266,7 @@ int odb_mkstemp(char *template, size_t limit, const char *pattern)
fd = mkstemp(template);
if (0 <= fd)
return fd;
-
+ close(fd);
Sorry, where is here a resource leak? You are "closing" something that was
never opened because fd is less than zero.
Ditto for the other case.
I guess it's about silencing some challenged code analysis tool. I
recall that last time we had something like this we decided that coders
are smarter than tools... and also that clean up like this (for real
leaks) would be something for libgit.
Michael