Fix bug with NeedMoreData mechanism

This commit is contained in:
Neale Pickett 2008-07-09 14:21:44 -06:00
parent 5f0f3693e8
commit cbf0fd4945
1 changed files with 1 additions and 1 deletions

2
ip.py
View File

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