function tin_details() in eat.c was passing an obj pointer to
tin_variety() where it was dereferenced; move the tin_details()
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
-------------------------------
char buf[BUFSZ], buf2[BUFSZ], *orcname;
orcname = rndorcname(buf2);
- /* orcname is never NULL */
+ /* rndorcname() won't return NULL */
sz = (int) strlen(orcname);
if (gang)
sz += (int) (strlen(gang) + sizeof " of " - sizeof "");