aboutsummaryrefslogtreecommitdiff
path: root/src/ats/plugin_ats_ril.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats/plugin_ats_ril.c')
-rw-r--r--src/ats/plugin_ats_ril.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ats/plugin_ats_ril.c b/src/ats/plugin_ats_ril.c
index 766a9936d..eac62c440 100644
--- a/src/ats/plugin_ats_ril.c
+++ b/src/ats/plugin_ats_ril.c
@@ -2089,8 +2089,8 @@ ril_cut_from_vector (void **old,
2089 else 2089 else
2090 { 2090 {
2091 tmpptr = GNUNET_malloc (size); 2091 tmpptr = GNUNET_malloc (size);
2092 memcpy (tmpptr, oldptr, bytes_before); 2092 GNUNET_memcpy (tmpptr, oldptr, bytes_before);
2093 memcpy (tmpptr + bytes_before, oldptr + (bytes_before + bytes_hole), bytes_after); 2093 GNUNET_memcpy (tmpptr + bytes_before, oldptr + (bytes_before + bytes_hole), bytes_after);
2094 } 2094 }
2095 if (NULL != *old) 2095 if (NULL != *old)
2096 { 2096 {