diff options
author | maf@google.com <maf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-03 18:18:50 +0000 |
---|---|---|
committer | maf@google.com <maf@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-03 18:18:50 +0000 |
commit | 48f0ce4e0243f8a5f293c6dfeccf9ef4c28f0dc7 (patch) | |
tree | 688c3ed168c1858ff3c1f1ba3b058519bb891f50 /o3d/import | |
parent | c3a0351b95ba245d3c664cf31834bd3523732ca4 (diff) | |
download | chromium_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.cc | 2 |
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; |