]> Nishi Git Mirror - libw3.git/commitdiff
fix the bug in the file protocol support
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Sun, 28 Jan 2024 12:52:27 +0000 (12:52 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Sun, 28 Jan 2024 12:52:27 +0000 (12:52 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@123 d27a3e52-49c5-7645-884c-6793ebffc270

Library/Core.c
W3Version.h.p

index b88aa21331f68b68a16d98eb2b33852c052b9b10..6ca0a40dc63a13d1c9a57f70bedd81690d5e16a6 100644 (file)
@@ -60,6 +60,7 @@ struct W3* W3_Create(const char* protocol, const char* hostname, int port) {
        w3->headers = NULL;
        w3->size = 0;
        w3->data = NULL;
+       w3->sock = -1;
        w3->readsize = 512;
        w3->port = port;
        w3->protocol = __W3_Strdup(protocol);
index 79c85ba9d82aefd58ffef2af3281d1fc7cd22e2f..3e628ac238950d22b38ebe5a8953518a33b7ab18 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#define LIBW3_VERSION "2.0C" \
+#define LIBW3_VERSION "2.0D" \
 SUFFIX
 
 #ifdef __cplusplus