author | Michael Krelin <hacker@klever.net> | 2011-04-27 10:10:00 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2011-04-27 10:10:00 (UTC) |
commit | d097b824b7fcad001c9581fb2e322bf3e3e5961d (patch) (side-by-side diff) | |
tree | 5a1c55e82c4b0ff4acca276b8e1122547530cc0b | |
parent | 65981784977659461f08b48f537be9f9f77a2112 (diff) | |
download | pumpkin-d097b824b7fcad001c9581fb2e322bf3e3e5961d.zip pumpkin-d097b824b7fcad001c9581fb2e322bf3e3e5961d.tar.gz pumpkin-d097b824b7fcad001c9581fb2e322bf3e3e5961d.tar.bz2 |
fix for misleading error message about unexpected source
along with a double-freeing offense. When I fail to receive packet not only
I diagnose this unfortunate development, but also start talking about
packet from unexpected source which is kinda weird considering there's
no packet at all.
Signed-off-by: Michael Krelin <hacker@klever.net>
-rwxr-xr-x[-rw-r--r--] | PumpKINDlg.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PumpKINDlg.cpp b/PumpKINDlg.cpp index f41b69f..3ff1500 100644..100755 --- a/PumpKINDlg.cpp +++ b/PumpKINDlg.cpp @@ -602,4 +602,5 @@ SOCKADDR_IN sin; m_Daddy->LogLine(IDS_LOG_XFERUDPRECEIVE);
delete p;
+ return;
}else
if(m_Peer.sin_addr.s_addr==INADDR_NONE){
|