fix concurrency for afb_msg_json_reply_error
[src/app-framework-binder.git] / src / afb-msg-json.c
index 6d8f732..f2922cb 100644 (file)
@@ -107,12 +107,7 @@ struct afb_arg afb_msg_json_get_arg(struct json_object *object, const char *name
 
 struct json_object *afb_msg_json_internal_error()
 {
-       static struct json_object *obj;
-
-       if (obj == NULL)
-               obj = afb_msg_json_reply_error("failed", "internal error", NULL, NULL);
-
-       return obj;
+       return afb_msg_json_reply_error("failed", "internal error", NULL, NULL);
 }