gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 09/13: get_date_str(): additional check


From: gnunet
Subject: [libmicrohttpd] 09/13: get_date_str(): additional check
Date: Sat, 30 Oct 2021 19:17:26 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 6468c2338834fb2835471f12fadbedd63340cd8c
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Sat Oct 30 18:00:03 2021 +0300

    get_date_str(): additional check
---
 src/microhttpd/connection.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 9031510a..3161ab8f 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1392,7 +1392,9 @@ get_date_str (char *date)
   date[3] = ',';
   date[4] = ' ';
   /* Day of the month */
-  MHD_uint8_to_str_pad ((uint8_t) now.tm_mday, 2, date + 5, buf_len - 5);
+  if (2 != MHD_uint8_to_str_pad ((uint8_t) now.tm_mday, 2,
+                                 date + 5, buf_len - 5))
+    return false;
   date[7] = ' ';
   /* Month */
   src = mons[now.tm_mon % 12];

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]