Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / xbt / snprintf.c
index 79223df..e3222d3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2005-2020. The SimGrid Team.
+/* Copyright (c) 2005-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
 #endif
 #include <stdio.h>
 
-#include "xbt/sysdep.h"           /* xbt_abort() */
 #include "src/internal_config.h"  /* Do we need vasprintf? */
-
-#include <assert.h>
+#include "xbt/asserts.h"          /* xbt_abort() */
+#include "xbt/misc.h"
 
 #if !HAVE_VASPRINTF
+#include <assert.h>
 #include <stdarg.h> /* vsnprintf */
-int vasprintf(char **ptr, const char *fmt, va_list ap);
+int vasprintf(char** ptr, const char* fmt, va_list ap) XBT_ATTRIB_PRINTF(2, 0);
 int vasprintf(char **ptr, const char *fmt, va_list ap)
 {
   size_t str_m;
@@ -75,8 +75,9 @@ int vasprintf(char **ptr, const char *fmt, va_list ap)
     str_l = vsnprintf(NULL, (size_t) 0, fmt, ap2);     /*get required size */
     va_end(ap2);
   }
-  xbt_assert(str_l >= 0);           /* possible integer overflow if str_m > INT_MAX */
-  *ptr = (char *) xbt_malloc(str_m = (size_t) str_l + 1);
+  assert(str_l >= 0); /* possible integer overflow if str_m > INT_MAX */
+  *ptr = (char*)malloc(str_m = (size_t)str_l + 1);
+  assert(*ptr != NULL);
 
   int str_l2 = vsnprintf(*ptr, str_m, fmt, ap);
   assert(str_l2 == str_l);