Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Dec 2012 20:47:34 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r244747 - head/lib/libutil
Message-ID:  <201212272047.qBRKlYNQ053993@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu Dec 27 20:47:34 2012
New Revision: 244747
URL: http://svnweb.freebsd.org/changeset/base/244747

Log:
  avoid arithmetic on uintptr_t
  
  Submitted by:	pjd
  Reviewed by:	jilles

Modified:
  head/lib/libutil/gr_util.c

Modified: head/lib/libutil/gr_util.c
==============================================================================
--- head/lib/libutil/gr_util.c	Thu Dec 27 20:46:17 2012	(r244746)
+++ head/lib/libutil/gr_util.c	Thu Dec 27 20:47:34 2012	(r244747)
@@ -452,7 +452,7 @@ gr_dup(const struct group *gr)
 		return (NULL);
 	/* point new gr_mem to end of struct + 1 */
 	if (gr->gr_mem != NULL)
-		newgr->gr_mem = (char **)((uintptr_t)newgr + sizeof(struct group));
+		newgr->gr_mem = (char **)(newgr + 1);
 	else
 		newgr->gr_mem = NULL;
 	/* point dst after the end of all the gr_mem pointers in newgr */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212272047.qBRKlYNQ053993>