aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-08-01 09:28:50 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-08-29 17:26:43 +0200
commit651d306c282d93bfd23d3987c0c2f23407d6ad94 (patch)
tree12b138a8a3c902883dee26d3423f819584b6c58e
parent3a29d1b2bc75418c8c61f19599581e252b79488a (diff)
broadband-modem-qmi: fix missing GSimpleAsyncResult unrefs
-rw-r--r--src/mm-broadband-modem-qmi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mm-broadband-modem-qmi.c b/src/mm-broadband-modem-qmi.c
index 48547e23..33501653 100644
--- a/src/mm-broadband-modem-qmi.c
+++ b/src/mm-broadband-modem-qmi.c
@@ -2299,6 +2299,7 @@ modem_3gpp_load_imei (MMIfaceModem3gpp *_self,
MM_CORE_ERROR_FAILED,
"Device doesn't report a valid IMEI");
g_simple_async_result_complete_in_idle (result);
+ g_object_unref (result);
}
/*****************************************************************************/
@@ -2717,6 +2718,7 @@ modem_cdma_load_meid (MMIfaceModemCdma *_self,
MM_CORE_ERROR_FAILED,
"Device doesn't report a valid MEID");
g_simple_async_result_complete_in_idle (result);
+ g_object_unref (result);
}
/*****************************************************************************/
@@ -2760,6 +2762,7 @@ modem_cdma_load_esn (MMIfaceModemCdma *_self,
MM_CORE_ERROR_FAILED,
"Device doesn't report a valid ESN");
g_simple_async_result_complete_in_idle (result);
+ g_object_unref (result);
}
/*****************************************************************************/