diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 13:33:46 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 14:04:51 +0100 |
commit | b66a3f362f9bbf6a23873b245577e87beae183d6 (patch) | |
tree | 1de8eae7047cc5c905448ff186398b84ff7677ed /utils | |
parent | 938730662dd2ec407c28380de66c3053f05e3159 (diff) | |
download | hurd-b66a3f362f9bbf6a23873b245577e87beae183d6.tar.gz hurd-b66a3f362f9bbf6a23873b245577e87beae183d6.tar.bz2 hurd-b66a3f362f9bbf6a23873b245577e87beae183d6.zip |
pids: Fix pointer arithmetic
Diffstat (limited to 'utils')
-rw-r--r-- | utils/pids.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/pids.c b/utils/pids.c index 44cd0b44..59646a5a 100644 --- a/utils/pids.c +++ b/utils/pids.c @@ -57,7 +57,7 @@ add_fn_pids (pid_t **pids, size_t *num_pids, unsigned id, pid_t *new = realloc (*pids, new_sz * sizeof (pid_t)); if (new) { - bcopy (new_pids, new + (*num_pids * sizeof (pid_t)), + bcopy (new_pids, new + *num_pids, num_new_pids * sizeof (pid_t)); *pids = new; *num_pids = new_sz; |