Commit aab52282 authored by unknown's avatar unknown

Post innodb-5.1-ss594 modifications.

 Avoiding compilation error ("void * - unknown size").

parent abd6f346
......@@ -144,7 +144,7 @@ mem_heap_cat(
void* res = mem_heap_alloc(heap, len1 + len2);
memcpy(res, b1, len1);
memcpy(res + len1, b2, len2);
memcpy((char *)res + len1, b2, len2);
return(res);
}
......
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