Warning fix about possibly misplaced assignment.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-04-07 12:40:26 +00:00
parent 5a8231ef46
commit 49178e6501

View File

@ -109,9 +109,12 @@ wxFSFile* wxZipFSHandler::OpenFile(wxFileSystem& fs, const wxString& location)
s = new wxZipFSInputStream(leftFile);
if (s && s->IsOk())
{
wxZipEntry *ent;
bool found = false;
while (!found && (ent = s->GetNextEntry())) {
while (!found)
{
wxZipEntry *ent = s->GetNextEntry();
if (!ent)
break;
if (ent->GetInternalName() == right)
found = true;
delete ent;