forked from github/server
fix a crash in the parser for USE orders when no item name was given.
This commit is contained in:
parent
3ac407407a
commit
b506bed4d9
|
@ -3796,7 +3796,7 @@ int use_cmd(unit * u, struct order *ord)
|
||||||
/* BENUTZE 42 Yanxspirit */
|
/* BENUTZE 42 Yanxspirit */
|
||||||
t = getstrtoken();
|
t = getstrtoken();
|
||||||
}
|
}
|
||||||
itype = finditemtype(t, u->faction->locale);
|
itype = t ? finditemtype(t, u->faction->locale) : NULL;
|
||||||
|
|
||||||
if (itype != NULL) {
|
if (itype != NULL) {
|
||||||
err = use_item(u, itype, n, ord);
|
err = use_item(u, itype, n, ord);
|
||||||
|
|
Loading…
Reference in New Issue