git_mkstemps_mode: don't set errno to EINVAL on exit.
[gitweb.git] / path.c
diff --git a/path.c b/path.c
index 03d284ba8bc76d873d289efbf45404cad58f111a..12ef731acebb96481dcc2360648ce4e1b85de33d 100644 (file)
--- a/path.c
+++ b/path.c
@@ -222,7 +222,6 @@ int git_mkstemps_mode(char *pattern, int suffix_len, int mode)
        }
        /* We return the null string if we can't find a unique file name.  */
        pattern[0] = '\0';
-       errno = EINVAL;
        return -1;
 }