summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-27 18:40:31 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-27 18:40:31 +0000
commit4f1fa6eb8e89f9059f7468526c8f990e2ccbc251 (patch)
treefef2636635b2c7858ea431cfb2feea99a1f9819f /src/map/skill.c
parenta7478042cf332fde65065c0c9c0015b681fb06e2 (diff)
downloadhercules-4f1fa6eb8e89f9059f7468526c8f990e2ccbc251.tar.gz
hercules-4f1fa6eb8e89f9059f7468526c8f990e2ccbc251.tar.bz2
hercules-4f1fa6eb8e89f9059f7468526c8f990e2ccbc251.tar.xz
hercules-4f1fa6eb8e89f9059f7468526c8f990e2ccbc251.zip
Patched an unresolved case where knocking back a bard/dancer would cause the mapserver to crash (bugreport:1043)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12249 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 17175b741..3ce19042a 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -9822,7 +9822,8 @@ int skill_unit_move_unit_group (struct skill_unit_group *group, int m, int dx, i
struct skill_unit *unit1;
struct skill_unit *unit2;
- nullpo_retr(0, group);
+ if (group == NULL)
+ return 0;
if (group->unit_count<=0)
return 0;
if (group->unit==NULL)