c11 safe string handling support
[vpp.git] / src / plugins / ioam / lib-pot / pot_util.c
index a253ad4..2fe9ce9 100644 (file)
@@ -50,7 +50,7 @@ static void pot_profile_init(pot_profile * new, u8 id)
 {
     if (new)
     {
-        memset(new, 0, sizeof(pot_profile));
+        clib_memset(new, 0, sizeof(pot_profile));
         new->id = id;
     }
 }
@@ -110,7 +110,7 @@ static void pot_profile_cleanup(pot_profile * profile)
 {
     u16 id = profile->id;
 
-    memset(profile, 0, sizeof(pot_profile));
+    clib_memset(profile, 0, sizeof(pot_profile));
     profile->id = id;           /* Restore id alone */
 }