summaryrefslogtreecommitdiffstats
path: root/binding/bluetooth-conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'binding/bluetooth-conf.c')
-rw-r--r--binding/bluetooth-conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/binding/bluetooth-conf.c b/binding/bluetooth-conf.c
index b4dea34..a5824bb 100644
--- a/binding/bluetooth-conf.c
+++ b/binding/bluetooth-conf.c
@@ -90,8 +90,8 @@ gchar *get_pincode(afb_api_t api)
if (json_object_object_get_ex(response, "value", &val))
pincode = g_strdup(json_object_get_string(val));
- else
- pincode = "1234";
+ if (!pincode)
+ pincode = g_strdup("1234");
json_object_put(response);
return pincode;