]> Nishi Git Mirror - libw3.git/commitdiff
fixed __W3_Strdup issue
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Mon, 26 Feb 2024 02:43:45 +0000 (02:43 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Mon, 26 Feb 2024 02:43:45 +0000 (02:43 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@255 d27a3e52-49c5-7645-884c-6793ebffc270

Library/Util.c
W3Version.h.m4

index fc3fd5951c1f4cf0f264e54a04be663a0ee60132..8fc6c623100d5d691d6c316df29f77a5c68d58b7 100644 (file)
@@ -54,7 +54,8 @@ char* __W3_Concat3(const char* str1, const char* str2, const char* str3) {
 
 char* __W3_Strdup(const char* str) {
        char* result = malloc(strlen(str) + 1);
-       memcpy(result, str, strlen(str) + 1);
+       memcpy(result, str, strlen(str));
+       result[strlen(str)] = 0;
        return result;
 }
 
index eeaa1e161089d184a4032b6e33521b2f051cdaf8..3d478506b2e1c787e8b4fab2707b5e1b60c42d33 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.19" \
+#define LIBW3_VERSION "2.19A" \
 SUFFIX
 
 ifdef(`HTTP_SUPPORT', `#define LIBW3_HTTP_SUPPORT', `')