Browse Source

Reinitializing list's begin iterator after few elements were erased from the head

0.10
ENikS 10 years ago
parent
commit
cda45b5131
  1. 2
      src/script/script.h

2
src/script/script.h

@ -544,7 +544,7 @@ public: @@ -544,7 +544,7 @@ public:
{
while (end() - pc >= (long)b.size() && memcmp(&pc[0], &b[0], b.size()) == 0)
{
erase(pc, pc + b.size());
pc = erase(pc, pc + b.size());
++nFound;
}
}

Loading…
Cancel
Save