1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-01 11:32:34 +01:00

2 open() statements were not matched with close() statements in function fetchFile

This commit is contained in:
Nicolas Bonifas
2009-12-06 03:02:26 +01:00
committed by Carlos R. Mafra
parent ad4358c605
commit 391d5de79e

View File

@@ -3370,6 +3370,8 @@ static int fetchFile(char *toPath, char *srcFile, char *destFile)
} }
} }
close(src);
close(dest);
return 0; return 0;
} }