1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

mem_free_if(data) instead of if (data) mem_free(data). Shorter.

This commit is contained in:
witekfl 2013-01-04 17:54:57 +01:00
parent b0ea7cd7c1
commit 4fc6343407

View File

@ -1206,7 +1206,7 @@ read_chunked_http_data(struct connection *conn, struct read_buffer *rb)
if (add_fragment(conn->cached, conn->from, data, data_len) == 1)
conn->tries = 0;
if (data) mem_free(data);
mem_free_if(data);
if (zero || !http->length) shutdown_connection_stream(conn);
}
@ -1274,7 +1274,7 @@ read_normal_http_data(struct connection *conn, struct read_buffer *rb)
if (add_fragment(conn->cached, conn->from, data, data_len) == 1)
conn->tries = 0;
if (data) mem_free(data);
mem_free_if(data);
if (!http->length) shutdown_connection_stream(conn);
}