Commit a5b85df5 authored by marko's avatar marko

branches/zip: recv_add_to_hash_table():

Simplify obfuscated pointer arithmetics.
parent c12d8601
......@@ -1274,7 +1274,7 @@ recv_add_to_hash_table(
sizeof(recv_data_t) + len);
*prev_field = recv_data;
ut_memcpy(((byte*)recv_data) + sizeof(recv_data_t), body, len);
memcpy(recv_data + 1, body, len);
prev_field = &(recv_data->next);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment