diff options
Diffstat (limited to 'src/vppinfra/phash.h')
-rw-r--r-- | src/vppinfra/phash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/phash.h b/src/vppinfra/phash.h index 746a0fddfab..3dc59c724f7 100644 --- a/src/vppinfra/phash.h +++ b/src/vppinfra/phash.h @@ -168,7 +168,7 @@ phash_main_free (phash_main_t * pm) phash_main_free_working_memory (pm); vec_free (pm->tab); vec_free (pm->keys); - memset (pm, 0, sizeof (pm[0])); + clib_memset (pm, 0, sizeof (pm[0])); } /* Slow hash computation for general keys. */ |