diff options
Diffstat (limited to 'cpp/src/IcePatch2/Util.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IcePatch2/Util.cpp b/cpp/src/IcePatch2/Util.cpp index 1fb589d1e98..20c80f713cd 100644 --- a/cpp/src/IcePatch2/Util.cpp +++ b/cpp/src/IcePatch2/Util.cpp @@ -946,9 +946,9 @@ getFileInfoSeqInt(const string& basePath, const string& relPath, int compress, G } const string pathBZ2Temp = path + ".bz2temp"; - FILE* stdioFile; - int bzError; - BZFILE* bzFile; + FILE* stdioFile = 0; + int bzError = 0; + BZFILE* bzFile = 0; if(doCompress) { stdioFile = OS::fopen(simplify(pathBZ2Temp), "wb"); |