]> saetta.ns0.it Git - libzakcgi/commitdiff
Read always only one line for the form parameter, instead of the all block (multiline).
authorAndrea Zagli <azagli@libero.it>
Mon, 13 Apr 2020 07:18:59 +0000 (09:18 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 13 Apr 2020 07:18:59 +0000 (09:18 +0200)
src/main.c

index 953b79485f5d4455b2b2e9cfb27602a4440334a2..e2ccd39982339f41e7312f68de19de6965e6ff22 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2019 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -1098,7 +1098,7 @@ static GHashTable
                                                }
                                        else
                                                {
-                                                       param_value = g_data_input_stream_read_line (dataistream, &length, NULL, NULL);
+                                                       param_value = g_data_input_stream_read_upto (dataistream, "", -1, &length, NULL, NULL);
                                                        param_value[length - 1] = '\0';
                                                }