]> granicus.if.org Git - sudo/commitdiff
Remove obsolete definition of SIZE_T which is now handled by
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 8 Sep 2014 20:30:17 +0000 (14:30 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 8 Sep 2014 20:30:17 +0000 (14:30 -0600)
sudo_compat.h and rename the format arg to fmt in sudo_evasprintf_v1()
for consistency with sudo_easprintf_v1().

lib/util/alloc.c

index fe2b555e20590c9d65b7b399bccc12dda6c26e6e..f4a54c57cf95c3d3d4f33b758bbd91dfa6f6798e 100644 (file)
 #include "sudo_alloc.h"
 #include "sudo_fatal.h"
 
-/*
- * If there is no SIZE_MAX or SIZE_T_MAX we have to assume that size_t
- * could be signed (as it is on SunOS 4.x).  This just means that
- * sudo_emallocarray() and sudo_ereallocarray() cannot allocate huge amounts on such a
- * platform but that is OK since sudo doesn't need to do so anyway.
- */
-#ifndef SIZE_MAX
-# ifdef SIZE_T_MAX
-#  define SIZE_MAX     SIZE_T_MAX
-# else
-#  define SIZE_MAX     INT_MAX
-# endif /* SIZE_T_MAX */
-#endif /* SIZE_MAX */
-
 /*
  * sudo_emalloc() calls the system malloc(3) and exits with an error if
  * malloc(3) fails.
@@ -261,11 +247,11 @@ sudo_easprintf_v1(char **ret, const char *fmt, ...)
  * returns -1 (out of memory).
  */
 int
-sudo_evasprintf_v1(char **ret, const char *format, va_list args)
+sudo_evasprintf_v1(char **ret, const char *fmt, va_list args)
 {
     int len;
 
-    if ((len = vasprintf(ret, format, args)) == -1)
+    if ((len = vasprintf(ret, fmt, args)) == -1)
        sudo_fatal_nodebug(NULL);
     return len;
 }