Laszlo Papp schrieb: > @@ -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. -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html