Browse Source

Revert "Sanity check various jp parameters before trying to decref them"

This reverts commit 3e1cedfc74.

Unnecessary
master
ckolivas 10 years ago
parent
commit
d4c4c2c76d
  1. 9
      src/stratifier.c

9
src/stratifier.c

@ -3488,12 +3488,9 @@ static void ssend_process(ckpool_t *ckp, smsg_t *msg)
static void discard_json_params(json_params_t *jp)
{
if (likely(jp->method))
json_decref(jp->method);
if (likely(jp->params))
json_decref(jp->params);
if (likely(jp->id_val))
json_decref(jp->id_val);
json_decref(jp->method);
json_decref(jp->params);
json_decref(jp->id_val);
free(jp);
}

Loading…
Cancel
Save