Fix a rare crash in sticky cookies.

This commit is contained in:
Aldo Cortesi 2011-08-26 18:03:03 +12:00
parent 8fbba59e8d
commit 4ac59a7859

View File

@ -1312,7 +1312,8 @@ class FlowMaster(controller.Master):
self.client_playback.clear(f) self.client_playback.clear(f)
if not f: if not f:
r._ack() r._ack()
self.process_new_response(f) if f:
self.process_new_response(f)
return f return f
def shutdown(self): def shutdown(self):