hramenko / bauglir-websocket

Automatically exported from code.google.com/p/bauglir-websocket
0 stars 0 forks source link

ConnectionReadFull EventHandler is not checked for null #44

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
line 799

Event handler ConnectionReadFull is called, if its null, get Null ref Ex

Line should be

if (ConnectionReadFull != null) ConnectionReadFull(this, lastCode2, fms);

Original issue reported on code.google.com by darren.h...@rendezz.com on 11 Jul 2013 at 10:22