aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 29be44f1..b86f1e52 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1743,7 +1743,7 @@ parse_initial_message_line (struct MHD_Connection *connection,
1743 while ( (' ' == uri[0]) && 1743 while ( (' ' == uri[0]) &&
1744 ( (size_t)(uri - line) < line_len) ) 1744 ( (size_t)(uri - line) < line_len) )
1745 uri++; 1745 uri++;
1746 if (uri - line == line_len) 1746 if ((size_t)(uri - line) == line_len)
1747 { 1747 {
1748 curi = ""; 1748 curi = "";
1749 uri = NULL; 1749 uri = NULL;