From 2240f2cf3665c872ffecaf61a1b46aad18774ce5 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 23 Jan 2012 15:52:05 +0000 Subject: [PATCH] Merge revision 472 changes: - Fix bug in CefZipArchive::Clear() (issue #486). git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/963@473 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- libcef_dll/wrapper/cef_zip_archive.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcef_dll/wrapper/cef_zip_archive.cc b/libcef_dll/wrapper/cef_zip_archive.cc index 508750798..737950d92 100644 --- a/libcef_dll/wrapper/cef_zip_archive.cc +++ b/libcef_dll/wrapper/cef_zip_archive.cc @@ -114,7 +114,7 @@ size_t CefZipArchive::Load(CefRefPtr stream, void CefZipArchive::Clear() { AutoLock lock_scope(this); - contents_.empty(); + contents_.clear(); } size_t CefZipArchive::GetFileCount()