Skip to content
Closed
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
2 changes: 0 additions & 2 deletions src/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,6 @@ int cloudsync_network_send_changes_internal (sqlite3_context *context, int argc,
cloudsync_memory_free(blob);
if (sent == false) {
network_result_to_sqlite_error(context, res, "cloudsync_network_send_changes unable to upload BLOB changes to remote host.");
network_result_cleanup(&res);
return SQLITE_ERROR;
}

Expand All @@ -729,7 +728,6 @@ int cloudsync_network_send_changes_internal (sqlite3_context *context, int argc,
res = network_receive_buffer(data, data->upload_endpoint, data->authentication, true, true, json_payload, CLOUDSYNC_HEADER_SQLITECLOUD);
if (res.code != CLOUDSYNC_NETWORK_OK) {
network_result_to_sqlite_error(context, res, "cloudsync_network_send_changes unable to notify BLOB upload to remote host.");
network_result_cleanup(&res);
return SQLITE_ERROR;
}

Expand Down