ralloc: Add missing va_end following va_copy.
authorVinson Lee <vlee@vmware.com>
Fri, 4 Feb 2011 06:10:16 +0000 (22:10 -0800)
committerVinson Lee <vlee@vmware.com>
Fri, 4 Feb 2011 06:10:16 +0000 (22:10 -0800)
src/glsl/ralloc.c

index 3ba5d86..6a5eac6 100644 (file)
@@ -403,6 +403,8 @@ printf_length(const char *fmt, va_list untouched_args)
 #endif
    assert(size >= 0);
 
+   va_end(args);
+
    return size;
 }