cast to uintptr_t to properly calculate offset
Reported by: mdf Submitted by: db
This commit is contained in:
parent
85a7bc8863
commit
85f7f7664e
@ -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 **)newgr + sizeof(struct group);
|
||||
newgr->gr_mem = (char **)((uintptr_t)newgr + sizeof(struct group));
|
||||
else
|
||||
newgr->gr_mem = NULL;
|
||||
/* point dst after the end of all the gr_mem pointers in newgr */
|
||||
|
Loading…
Reference in New Issue
Block a user