diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-06-22 20:52:28 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-06-22 20:52:28 +0000 |
commit | cb4f24027611ebb9b01178dd86321b0bc65ff145 (patch) | |
tree | 2c006f1afbcf850c375ddcdda1add19289278e24 /cpp/src/IcePatch2/Util.cpp | |
parent | Minor fix (diff) | |
download | ice-cb4f24027611ebb9b01178dd86321b0bc65ff145.tar.bz2 ice-cb4f24027611ebb9b01178dd86321b0bc65ff145.tar.xz ice-cb4f24027611ebb9b01178dd86321b0bc65ff145.zip |
Fixed GCC warnings
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"); |