Fix egregious NeedMoreData bug

This commit is contained in:
Neale Pickett 2008-07-14 16:27:22 -06:00
parent cbf0fd4945
commit 6c2ee3b993
1 changed files with 1 additions and 1 deletions

2
ip.py
View File

@ -494,7 +494,7 @@ class Session:
saddr = chunk.first.saddr saddr = chunk.first.saddr
try: try:
(first, data) = self.pending.pop(saddr) (first, data) = self.pending[saddr]
except KeyError: except KeyError:
first = chunk.first first = chunk.first
data = gapstr.GapString() data = gapstr.GapString()