]> git.droids-corp.org - dpdk.git/commitdiff
eal/windows: fix out-of-memory check in asprintf
authorDmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Mon, 17 Feb 2020 23:56:16 +0000 (02:56 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 21 Feb 2020 16:54:56 +0000 (17:54 +0100)
Check vsnprintf() result to prevent calling malloc() with negative size.
Check actual malloc() result and terminate asprintf() with documented
error code to prevent the use of NULL pointer.

Fixes: e8428a9d8 ("eal/windows: add some basic functions and macros")
Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
Acked-by: Ranjit Menon <ranjit.menon@intel.com>
lib/librte_eal/windows/eal/include/rte_os.h

index 9e762617b1980d728df4fc8a05d67b349c7adb21..c76be12168464f0dbea745f2c744e80e8ca198aa 100644 (file)
@@ -64,12 +64,15 @@ asprintf(char **buffer, const char *format, ...)
        va_list arg;
 
        va_start(arg, format);
-       size = vsnprintf(NULL, 0, format, arg) + 1;
+       size = vsnprintf(NULL, 0, format, arg);
        va_end(arg);
+       if (size < 0)
+               return -1;
+       size++;
 
        *buffer = malloc(size);
-       if (buffer == NULL)
-               printf("Cannot allocate memory");
+       if (*buffer == NULL)
+               return -1;
 
        va_start(arg, format);
        ret = vsnprintf(*buffer, size, format, arg);