diff options
author | Ben Chan <benchan@chromium.org> | 2018-10-17 23:06:48 -0700 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2018-10-18 13:17:36 +0200 |
commit | 7de6b6f2e176ed60f1f74d0d8704f73e39585891 (patch) | |
tree | e7a8e4adb2c7b6cd9da12be4c281440f6a796bc6 /plugins/cinterion/mm-modem-helpers-cinterion.c | |
parent | 749b806c30b41512dec4901808976425cdf3e56b (diff) |
core: remove unnecessary NULL checks for g_match_info_free()
g_match_info_free() already check if the given pointer is NULL and does
nothing on a NULL pointer.
Diffstat (limited to 'plugins/cinterion/mm-modem-helpers-cinterion.c')
-rw-r--r-- | plugins/cinterion/mm-modem-helpers-cinterion.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/plugins/cinterion/mm-modem-helpers-cinterion.c b/plugins/cinterion/mm-modem-helpers-cinterion.c index 86cea6c1..2afd11a4 100644 --- a/plugins/cinterion/mm-modem-helpers-cinterion.c +++ b/plugins/cinterion/mm-modem-helpers-cinterion.c @@ -147,8 +147,7 @@ mm_cinterion_parse_scfg_test (const gchar *response, g_free (maxbandstr); } - if (match_info) - g_match_info_free (match_info); + g_match_info_free (match_info); g_regex_unref (r); if (!bands) @@ -234,8 +233,7 @@ mm_cinterion_parse_scfg_response (const gchar *response, g_free (currentstr); } - if (match_info) - g_match_info_free (match_info); + g_match_info_free (match_info); g_regex_unref (r); if (!bands) @@ -341,8 +339,7 @@ mm_cinterion_parse_cnmi_test (const gchar *response, out: - if (match_info) - g_match_info_free (match_info); + g_match_info_free (match_info); g_regex_unref (r); if (inner_error) { @@ -457,8 +454,7 @@ mm_cinterion_parse_sind_response (const gchar *response, } else errors++; - if (match_info) - g_match_info_free (match_info); + g_match_info_free (match_info); g_regex_unref (r); if (errors > 0) { |