summaryrefslogtreecommitdiffstats
path: root/o3d/import
diff options
context:
space:
mode:
authormaf@google.com <maf@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-03 18:18:50 +0000
committermaf@google.com <maf@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-03 18:18:50 +0000
commit48f0ce4e0243f8a5f293c6dfeccf9ef4c28f0dc7 (patch)
tree688c3ed168c1858ff3c1f1ba3b058519bb891f50 /o3d/import
parentc3a0351b95ba245d3c664cf31834bd3523732ca4 (diff)
downloadchromium_src-48f0ce4e0243f8a5f293c6dfeccf9ef4c28f0dc7.zip
chromium_src-48f0ce4e0243f8a5f293c6dfeccf9ef4c28f0dc7.tar.gz
chromium_src-48f0ce4e0243f8a5f293c6dfeccf9ef4c28f0dc7.tar.bz2
Make Convertor project compile in GCC - fixes release-build only compiler errors.
Review URL: http://codereview.chromium.org/197003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25333 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/import')
-rw-r--r--o3d/import/cross/zip_archive.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/import/cross/zip_archive.cc b/o3d/import/cross/zip_archive.cc
index 946915c..a71d7d4 100644
--- a/o3d/import/cross/zip_archive.cc
+++ b/o3d/import/cross/zip_archive.cc
@@ -295,7 +295,7 @@ char *ZipArchive::GetFileData(const string &filename, size_t *size) {
result = unzOpenCurrentFilePassword(uf, NULL);
- char *buffer;
+ char *buffer = NULL;
if (result == UNZ_OK) {
const int kBufferChunkSize = 32768;