Author: ngie
Date: Wed Jun  8 18:22:54 2016
New Revision: 301680
URL: https://svnweb.freebsd.org/changeset/base/301680

Log:
  MFC r300625:
  
  Remove unnecessary memset(.., 0, ..)'s
  
  The mem_alloc macro calls calloc (userspace) / malloc(.., M_WAITOK|M_ZERO)
  under the covers, so zeroing out memory is already handled by the underlying
  calls

Modified:
  stable/10/sys/rpc/svc.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/rpc/svc.c
==============================================================================
--- stable/10/sys/rpc/svc.c     Wed Jun  8 18:21:27 2016        (r301679)
+++ stable/10/sys/rpc/svc.c     Wed Jun  8 18:22:54 2016        (r301680)
@@ -847,9 +847,7 @@ svc_xprt_alloc()
        SVCXPRT_EXT *ext;
 
        xprt = mem_alloc(sizeof(SVCXPRT));
-       memset(xprt, 0, sizeof(SVCXPRT));
        ext = mem_alloc(sizeof(SVCXPRT_EXT));
-       memset(ext, 0, sizeof(SVCXPRT_EXT));
        xprt->xp_p3 = ext;
        refcount_init(&xprt->xp_refs, 1);
 
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to