Remove an unnecessary allocation.
authorgraham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Fri, 19 Nov 2010 04:30:47 +0000 (04:30 +0000)
committergraham.gower@gmail.com <graham.gower@gmail.com@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Fri, 19 Nov 2010 04:30:47 +0000 (04:30 +0000)
According to SUS3:
If the value of n is zero on a call to snprintf(), nothing shall be written, the number of bytes that would have been written had n been sufficiently large excluding the terminating null shall be returned, and s may be a null pointer.

git-svn-id: http://opkg.googlecode.com/svn/trunk@583 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/sprintf_alloc.c

index e2513ecee5fda05c59861f6d08d0205d71270faa..aef8e066c3a102f5411e59ec5397beca9424f154 100644 (file)
@@ -23,9 +23,9 @@ sprintf_alloc(char **str, const char *fmt, ...)
 {
        va_list ap;
        int n;
-       unsigned int size = 1;
+       unsigned int size = 0;
 
-       *str = xcalloc(1, size);
+       *str = NULL;
 
        for (;;) {
                va_start(ap, fmt);