Open GoogleCodeExporter opened 9 years ago
[deleted comment]
[deleted comment]
issue was fixed in August.
Original comment by kyle.creyts@gmail.com
on 25 Jan 2011 at 10:56
What was actually fixed? Python is an interpreted language, and until 2.5, only
grew in its memory usage (no free'ing of GC'd memory). Let me know if we should
close this out...
Original comment by dugsong
on 25 Jan 2011 at 11:13
Go ahead and close it.
Without the fix, python would get stuck in an infinite loop where it would
repeatedly append self.SRE(self.data) to l, and this would cause python's mem
use to grow to fill all available memory, both physical and swap.
Memory leak was not the proper term.
diff with fix:
1c1
< # $Id: gre.py 30 2007-01-27 03:10:09Z dugsong $
---
> # $Id: gre.py 75 2010-08-03 14:42:19Z jon.oberheide $
73a74
> self.data = self.data[len(sre):]
78,79d78
< skip = sum(map(len, self.sre))
< self.data = self.data[skip:]
Original comment by kyle.creyts@gmail.com
on 25 Jan 2011 at 11:40
Issue still exists....
Python ver 2.6
Dpkt ver 1.7
Original comment by rrpo...@gmail.com
on 3 Nov 2011 at 4:12
Original issue reported on code.google.com by
kyle.creyts@gmail.com
on 20 Jan 2011 at 4:26Attachments: