Browse Source

Cope with broken clients that don't send an integer for id

master
Con Kolivas 11 years ago
parent
commit
7389b7b15c
  1. 4
      src/stratifier.c

4
src/stratifier.c

@ -1150,10 +1150,14 @@ static void parse_instance_msg(int client_id, json_t *msg)
err_val = json_string("-1:id not found");
goto out;
}
#if 0
/* Random broken clients send something not an integer so just use the
* json object, whatever it is. */
if (unlikely(!json_is_integer(id_val))) {
err_val = json_string("-1:id is not integer");
goto out;
}
#endif
method = json_object_get(msg, "method");
if (unlikely(!method)) {
err_val = json_string("-3:method not found");

Loading…
Cancel
Save