git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33409
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
s = new wxZipFSInputStream(leftFile);
if (s && s->IsOk())
{
s = new wxZipFSInputStream(leftFile);
if (s && s->IsOk())
{
- while (!found && (ent = s->GetNextEntry())) {
+ while (!found)
+ {
+ wxZipEntry *ent = s->GetNextEntry();
+ if (!ent)
+ break;
if (ent->GetInternalName() == right)
found = true;
delete ent;
if (ent->GetInternalName() == right)
found = true;
delete ent;