Remove extraneous NULL pointer check - the pointer is guaranteed to be non-NULL.

This commit is contained in:
David E. O'Brien 2008-09-01 15:10:03 +00:00
parent dd335a1577
commit 16d2cd9432
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182605

View File

@ -1319,8 +1319,7 @@ fprintlog(struct filed *f, int flags, const char *msg)
break;
}
f->f_prevcount = 0;
if (wmsg)
free(wmsg);
free(wmsg);
}
/*