diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-12-10 02:58:25 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-12-10 02:58:25 +0100 |
commit | 344273a7e0a6899451836e6072fecebea4a6ac24 (patch) | |
tree | ea24fa9e12ae6dad40eeb6470c92545e14f0f8cf /src/mds-kkbd.c | |
parent | no more direct allocations, always use macros, unless using alloca (diff) | |
download | mds-344273a7e0a6899451836e6072fecebea4a6ac24.tar.gz mds-344273a7e0a6899451836e6072fecebea4a6ac24.tar.bz2 mds-344273a7e0a6899451836e6072fecebea4a6ac24.tar.xz |
add xmemdup macro
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-kkbd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mds-kkbd.c b/src/mds-kkbd.c index 1823f5c..afac365 100644 --- a/src/mds-kkbd.c +++ b/src/mds-kkbd.c @@ -368,8 +368,7 @@ int unmarshal_server(char* state_buf) buf_get_next(state_buf, size_t, mapping_size); if (mapping_size > 0) { - fail_if (xmalloc(mapping, mapping_size, int)); - memcpy(mapping, state_buf, mapping_size * sizeof(int)); + fail_if (xmemdup(mapping, state_buf, mapping_size, int)); state_buf += mapping_size * sizeof(int) / sizeof(char); } fail_if (mds_message_unmarshal(&received, state_buf)); |