We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 307389b commit 0cc7d4aCopy full SHA for 0cc7d4a
src/net/http.c
@@ -745,12 +745,11 @@ static int XHTTP_ParseHeaders(xhttp_t *pHttp)
745
746
while (pData[nPosit] == ' ' || pData[nPosit] == ':') nPosit++;
747
char *pValue = xstracut(pData, nPosit, strlen(pData) - nPosit);
748
-
+
749
if (pValue == NULL)
750
{
751
- nStatus = XSTDERR;
752
free(pHeaderStr);
753
- break;
+ continue;
754
}
755
756
if (pValue[0] == XSTR_SPACE_CHAR) xstrnrm(pValue, 0, 1);
src/xver.h
@@ -12,7 +12,7 @@
12
13
#define XUTILS_VERSION_MAX 2
14
#define XUTILS_VERSION_MIN 6
15
-#define XUTILS_BUILD_NUMBER 31
+#define XUTILS_BUILD_NUMBER 32
16
17
#ifdef __cplusplus
18
extern "C" {
0 commit comments