From ecbbb56d6c75c397e6f89ec78a9ef6aa0570e53e Mon Sep 17 00:00:00 2001 From: zephyrus Date: Mon, 24 Mar 2008 17:31:08 +0000 Subject: [PATCH] - Fixed a potential crash in Adoption. Reported by Yomanda. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12428 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/clif.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/map/clif.c b/src/map/clif.c index 1c9eee4fb0..553675939c 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -12069,6 +12069,9 @@ void clif_parse_Adopt_reply(int fd, struct map_session_data *sd) sd->adopt_invite = 0; + if( !p1_sd ) + return; // Parent is not online + if( pid != p1_sd->status.account_id || !result ) return; // Not the same sender | Reply No