projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2de590e
)
i965g: Add missing va_end.
author
Vinson Lee
<vlee@vmware.com>
Mon, 1 Feb 2010 07:47:07 +0000
(23:47 -0800)
committer
Vinson Lee
<vlee@vmware.com>
Mon, 1 Feb 2010 07:47:07 +0000
(23:47 -0800)
src/gallium/drivers/i965/brw_disasm.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/i965/brw_disasm.c
b/src/gallium/drivers/i965/brw_disasm.c
index 65db27248b1308997d1ccc325320d1e346e104cd..9c2ccfff652009ec6e953c924fd7916a51136798 100644
(file)
--- a/
src/gallium/drivers/i965/brw_disasm.c
+++ b/
src/gallium/drivers/i965/brw_disasm.c
@@
-366,6
+366,7
@@
static int format (FILE *f, char *format, ...)
va_start (args, format);
vsnprintf (buf, sizeof (buf) - 1, format, args);
+ va_end (args);
string (f, buf);
return 0;
}