summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinwoo Kim <cinoo.kim@samsung.com>2020-12-15 11:50:49 +0900
committerMike Gorse <mgorse@suse.com>2020-12-16 08:46:14 -0600
commit87c898bcbde8452a349b0d472b850a0d7277c446 (patch)
tree652cd0c9836abc431e177bc35c47a275f5a2a5d4
parentb91a111f040a09e804428a81e6de214e4962247b (diff)
downloadat-spi2-atk-87c898bcbde8452a349b0d472b850a0d7277c446.tar.gz
tests: fix memory leak
The return value of atspi_accessible_get_name should be released after using it.
-rw-r--r--tests/atk_test_util.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/atk_test_util.c b/tests/atk_test_util.c
index 3e3c08a..2373523 100644
--- a/tests/atk_test_util.c
+++ b/tests/atk_test_util.c
@@ -52,6 +52,7 @@ run_app (const char *file_name)
static AtspiAccessible *try_get_root_obj (AtspiAccessible *obj)
{
+ gchar *name;
int i;
gint child_count = atspi_accessible_get_child_count (obj, NULL);
@@ -59,10 +60,15 @@ static AtspiAccessible *try_get_root_obj (AtspiAccessible *obj)
return NULL;
}
- for (i=0; i<child_count; i++) {
- AtspiAccessible *child = atspi_accessible_get_child_at_index (obj,i, NULL);
- if (child && !strcmp (atspi_accessible_get_name (child, NULL), "root_object"))
- return child;
+ for (i = 0; i < child_count; i++) {
+ AtspiAccessible *child = atspi_accessible_get_child_at_index (obj, i, NULL);
+ if (child && name = atspi_accessible_get_name (child, NULL)) {
+ if (!strcmp (name, "root_object")) {
+ g_free(name);
+ return child;
+ }
+ g_free(name);
+ }
}
return NULL;