Author: rpaulo
Date: Wed Feb 11 19:07:05 2015
New Revision: 278592
URL: https://svnweb.freebsd.org/changeset/base/278592

Log:
  Remove check against NULL after M_WAITOK.
  
  Submitted by: Oliver Pinter

Modified:
  head/sys/kern/kern_sig.c

Modified: head/sys/kern/kern_sig.c
==============================================================================
--- head/sys/kern/kern_sig.c    Wed Feb 11 18:59:46 2015        (r278591)
+++ head/sys/kern/kern_sig.c    Wed Feb 11 19:07:05 2015        (r278592)
@@ -3362,8 +3362,6 @@ close:
        len = MAXPATHLEN * 2 + sizeof(comm_name) - 1 +
            sizeof(' ') + sizeof(core_name) - 1;
        data = malloc(len, M_TEMP, M_WAITOK);
-       if (data == NULL)
-               goto out;
        if (vn_fullpath_global(td, p->p_textvp, &fullpath, &freepath) != 0)
                goto out;
        if (!coredump_sanitise_path(fullpath))
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to