From: Cameron Gutman Date: Wed, 30 Sep 2009 01:30:45 +0000 (+0000) Subject: - Fix a nasty bug that caused us to exit the loop before sending all the data X-Git-Tag: ReactOS-0.3.11~703 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=11189595617d79eb14f502c921f62e737c9cf352 - Fix a nasty bug that caused us to exit the loop before sending all the data svn path=/trunk/; revision=43229 --- diff --git a/reactos/lib/drivers/oskittcp/oskittcp/ip_output.c b/reactos/lib/drivers/oskittcp/oskittcp/ip_output.c index 3de9ff18b75..b390a8c354e 100644 --- a/reactos/lib/drivers/oskittcp/oskittcp/ip_output.c +++ b/reactos/lib/drivers/oskittcp/oskittcp/ip_output.c @@ -522,7 +522,6 @@ sendorfree: error = OtcpEvent.PacketSend( OtcpEvent.ClientData, (OSK_PCHAR)new_m->m_data, new_m->m_len ); m_free( new_m ); - goto done; } OS_DbgPrint(OSK_MID_TRACE,("Error from upper layer: %d\n", error));