summaryrefslogtreecommitdiffstats
path: root/drivers/hsomodem/radio-settings.c
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-08-12 23:37:52 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-08-12 23:37:52 -0500
commitecc774b0f2668fc28ac38d37dc5d5037f473be0b (patch)
tree2f1437716d52f3e55d1cba3ff7324eefce281d40 /drivers/hsomodem/radio-settings.c
parentfa8f094a96af3043239b8e18e33cfc9e9bf3d26d (diff)
downloadofono-ecc774b0f2668fc28ac38d37dc5d5037f473be0b.tar.bz2
hsomodem: Use g_at_chat_clone
Diffstat (limited to 'drivers/hsomodem/radio-settings.c')
-rw-r--r--drivers/hsomodem/radio-settings.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hsomodem/radio-settings.c b/drivers/hsomodem/radio-settings.c
index 0b6a874c..3456339b 100644
--- a/drivers/hsomodem/radio-settings.c
+++ b/drivers/hsomodem/radio-settings.c
@@ -172,7 +172,7 @@ static int hso_radio_settings_probe(struct ofono_radio_settings *rs,
if (!rsd)
return -ENOMEM;
- rsd->chat = chat;
+ rsd->chat = g_at_chat_clone(chat);
ofono_radio_settings_set_data(rs, rsd);
@@ -187,6 +187,8 @@ static void hso_radio_settings_remove(struct ofono_radio_settings *rs)
struct radio_settings_data *rsd = ofono_radio_settings_get_data(rs);
ofono_radio_settings_set_data(rs, NULL);
+
+ g_at_chat_unref(rsd->chat);
g_free(rsd);
}