Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions parson.c
Original file line number Diff line number Diff line change
Expand Up @@ -991,9 +991,6 @@ static int json_serialize_to_buffer_r(const JSON_Value *value, char *buf, int le
if (written < 0) {
return -1;
}
if (buf != NULL) {
buf += written;
}
written_total += written;
return written_total;
case JSONBoolean:
Expand All @@ -1012,9 +1009,6 @@ static int json_serialize_to_buffer_r(const JSON_Value *value, char *buf, int le
if (written < 0) {
return -1;
}
if (buf != NULL) {
buf += written;
}
written_total += written;
return written_total;
case JSONNull:
Expand Down