projects
/
platform
/
upstream
/
at-spi2-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13c2ca4
)
[prevent][43479] Fix for missing va_end in _atspi_dbus_call_partial
13/172913/2
author
Paweł Stawicki
<p.stawicki@samsung.com>
Fri, 16 Mar 2018 17:08:19 +0000
(18:08 +0100)
committer
Lukasz Oleksak
<l.oleksak@samsung.com>
Tue, 20 Mar 2018 14:01:30 +0000
(14:01 +0000)
Change-Id: Ice71e5aaa543ca7908464538f15f3fbd921c464f
atspi/atspi-misc.c
patch
|
blob
|
history
diff --git
a/atspi/atspi-misc.c
b/atspi/atspi-misc.c
index
5c0a40d
..
65003df
100644
(file)
--- a/
atspi/atspi-misc.c
+++ b/
atspi/atspi-misc.c
@@
-1107,9
+1107,11
@@
_atspi_dbus_call_partial (gpointer obj,
const char *type, ...)
{
va_list args;
-
+ DBusMessage * result;
va_start (args, type);
- return _atspi_dbus_call_partial_va (obj, interface, method, error, type, args);
+ result = _atspi_dbus_call_partial_va (obj, interface, method, error, type, args);
+ va_end (args);
+ return result;
}