@@ -1537,7 +1537,8 @@ function savelev() in save.c was dereferencing a NHFILE pointer for
|
|||||||
function tin_details() in eat.c was passing an obj pointer to
|
function tin_details() in eat.c was passing an obj pointer to
|
||||||
tin_variety() where it was dereferenced; move the tin_details()
|
tin_variety() where it was dereferenced; move the tin_details()
|
||||||
NULL check above that tin_variety() call (pr #676 by argrath)
|
NULL check above that tin_variety() call (pr #676 by argrath)
|
||||||
|
remove unnecessary null checks from christen_orc() (pr #681 by argrath)
|
||||||
|
|
||||||
|
|
||||||
Code Cleanup and Reorganization
|
Code Cleanup and Reorganization
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|||||||
@@ -2415,7 +2415,7 @@ christen_orc(struct monst *mtmp, const char *gang, const char *other)
|
|||||||
char buf[BUFSZ], buf2[BUFSZ], *orcname;
|
char buf[BUFSZ], buf2[BUFSZ], *orcname;
|
||||||
|
|
||||||
orcname = rndorcname(buf2);
|
orcname = rndorcname(buf2);
|
||||||
/* orcname is never NULL */
|
/* rndorcname() won't return NULL */
|
||||||
sz = (int) strlen(orcname);
|
sz = (int) strlen(orcname);
|
||||||
if (gang)
|
if (gang)
|
||||||
sz += (int) (strlen(gang) + sizeof " of " - sizeof "");
|
sz += (int) (strlen(gang) + sizeof " of " - sizeof "");
|
||||||
|
|||||||
Reference in New Issue
Block a user