Navigation Menu

Skip to content

Commit

Permalink
windows: use portable memcpy()
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 17, 2015
1 parent 744e1ac commit 0811249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ii.c
Expand Up @@ -8025,7 +8025,7 @@ ii_buffer_values_append(grn_ctx *ctx, grn_ii_buffer *ii_buffer,
value->buf = new_buf;
value->cap = len;
}
memcpy(value->buf, p, len);
grn_memcpy(value->buf, p, len);
p = value->buf;
}
value->sid = sid;
Expand Down

0 comments on commit 0811249

Please sign in to comment.