<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.2900.2873" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>Hi 
Fab,</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>While running 
applications with application verifier enabled the verifier complains about 
setting a NULL event on the function IBSPEnumNetworkEvents.</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>It seems that 
replacing the line (~880)</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>ResetEvent( 
hEventObject );</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>with the 
lines</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006> if( 
hEventObject != NULL )<BR> {<BR>  ResetEvent( hEventObject 
);<BR> }<BR></SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>stops this 
problem.</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>So, can you please 
apply the following patch?</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006>Thanks</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006>Tzachi</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=470204508-11062006></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=470204508-11062006>Index: 
ibspdll.c<BR>===================================================================<BR>--- 
ibspdll.c (revision 380)<BR>+++ ibspdll.c (working copy)<BR>@@ -874,7 
+874,10 @@<BR> <BR>  IBSP_ENTER( IBSP_DBG_NEV 
);<BR> <BR>- ResetEvent( hEventObject );<BR>+ if( hEventObject != 
NULL)<BR>+ {<BR>+  ResetEvent( hEventObject 
);<BR>+ }<BR> <BR>  lpNetworkEvents->lNetworkEvents 
=<BR>   InterlockedExchange( &socket_info->network_events, 
0 );<BR></SPAN></FONT></DIV></BODY></HTML>