mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #185 from lioncash/leak
zzogl: Fix a few missing fcloses
This commit is contained in:
commit
a5f54b5ec1
|
@ -323,6 +323,7 @@ __forceinline bool LoadShadersFromDat()
|
|||
fseek(fres, 0, SEEK_SET);
|
||||
fread(s_lpShaderResources, s, 1, fres);
|
||||
s_lpShaderResources[s] = 0;
|
||||
fclose(fres);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -222,6 +222,7 @@ bool ZZshCreateOpenShadersFile() {
|
|||
fseek(fres, 0, SEEK_SET);
|
||||
fread(s_lpShaderResources, s, 1, fres);
|
||||
s_lpShaderResources[s] = 0;
|
||||
fclose(fres);
|
||||
# endif // _WIN32
|
||||
#else // NOT RELEASE_TO_PUBLIC
|
||||
# ifndef _WIN32 // NOT WINDOWS
|
||||
|
|
|
@ -274,6 +274,7 @@ __forceinline bool LoadShadersFromDat()
|
|||
fprintf(stderr, "Failed to read ps2hw.dat. Corrupted file?\n");
|
||||
|
||||
s_lpShaderResources[s] = 0;
|
||||
fclose(fres);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -224,6 +224,7 @@ bool ZZshCreateOpenShadersFile() {
|
|||
if (fread(s_lpShaderResources, s, 1, fres) == 0)
|
||||
ZZLog::Error_Log("Cannot read ps2hw.dat in working directory.");
|
||||
s_lpShaderResources[s] = 0;
|
||||
fclose(fres);
|
||||
# endif // _WIN32
|
||||
#else // NOT RELEASE_TO_PUBLIC
|
||||
# ifndef _WIN32 // NOT WINDOWS
|
||||
|
|
Loading…
Reference in New Issue