[tor-commits] [orbot/master] better implementation of stpcpy for pre-Android 21 NDK

n8fr8 at torproject.org n8fr8 at torproject.org
Mon Jan 25 17:08:44 UTC 2016


commit 4913b0ca323c62fa623c3e4a070e658b46cf3cae
Author: Nathan Freitas <nathan at freitas.net>
Date:   Mon Jan 25 11:57:16 2016 -0500

    better implementation of stpcpy for pre-Android 21 NDK
---
 jni/pdnsd/src/cache.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/jni/pdnsd/src/cache.c b/jni/pdnsd/src/cache.c
index 82d7088..32d28cc 100644
--- a/jni/pdnsd/src/cache.c
+++ b/jni/pdnsd/src/cache.c
@@ -2699,8 +2699,10 @@ int dump_cache(int fd, const unsigned char *name, int exact)
 
 char *stpcpy(char *dest, char const *src)
 {
-  strcpy(dest, src);
-  return dest + strlen(dest);
+  size_t src_len = strlen(src);
+  return memcpy(dest, src, src_len) + src_len;
+ // strcpy(dest, src);
+ // return dest + strlen(dest);
 }
 
 





More information about the tor-commits mailing list