1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-23 22:52: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;
}