diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-04-03 18:45:46 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-04-03 18:45:46 +0200 |
commit | 6fd24eef238349d71ddd5bff7b87b3404e972ba6 (patch) | |
tree | cf144a3d95b37af5d25fe8d32814a0c57b86d8a8 /src | |
parent | bc01117ce0148ba819ce769ba9f61521e87f5ec9 (diff) |
fix #6155
Diffstat (limited to 'src')
-rw-r--r-- | src/util/strings.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/strings.c b/src/util/strings.c index e8d411ea5..be2ec33dc 100644 --- a/src/util/strings.c +++ b/src/util/strings.c @@ -104,6 +104,7 @@ GNUNET_STRINGS_pp2s (const struct GNUNET_PeerIdentity *pids, size_t off; size_t plen = num_pids * 5 + 1; + GNUNET_assert (num_pids < UINT32_MAX / 5); off = 0; buf = GNUNET_malloc (plen); for (unsigned int i = 0; i < num_pids; i++) |