diff options
Diffstat (limited to 'src/map/chrif.cpp')
-rw-r--r-- | src/map/chrif.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/chrif.cpp b/src/map/chrif.cpp index 018c659..302d04c 100644 --- a/src/map/chrif.cpp +++ b/src/map/chrif.cpp @@ -752,7 +752,8 @@ int chrif_divorce(int char_id, int partner_id) } } - nullpo_ret(sd = map_nick2sd(map_charid2nick(partner_id))); + sd = map_nick2sd(map_charid2nick(partner_id)); + nullpo_ret(sd); if (sd->status.partner_id == char_id) sd->status.partner_id = 0; |