projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3188a7d
)
ralloc: Add missing va_end following va_copy.
author
Vinson Lee
<vlee@vmware.com>
Fri, 4 Feb 2011 06:10:16 +0000
(22:10 -0800)
committer
Vinson Lee
<vlee@vmware.com>
Fri, 4 Feb 2011 06:10:16 +0000
(22:10 -0800)
src/glsl/ralloc.c
patch
|
blob
|
history
diff --git
a/src/glsl/ralloc.c
b/src/glsl/ralloc.c
index 3ba5d86cd9c353fc70b7f19c8758bb9d7b9091e3..6a5eac6b9a34c5c5f575ab8565fc30c0e9cd6cf6 100644
(file)
--- a/
src/glsl/ralloc.c
+++ b/
src/glsl/ralloc.c
@@
-403,6
+403,8
@@
printf_length(const char *fmt, va_list untouched_args)
#endif
assert(size >= 0);
+ va_end(args);
+
return size;
}