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 3ba5d86cd9c353fc70b7f19c8758bb9d7b9091e3..6a5eac6b9a34c5c5f575ab8565fc30c0e9cd6cf6 100644 (file)
@@ -403,6 +403,8 @@ printf_length(const char *fmt, va_list untouched_args)
 #endif
    assert(size >= 0);
 
+   va_end(args);
+
    return size;
 }