gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 112/178: examples/http2-upload: expand buffer to av


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 112/178: examples/http2-upload: expand buffer to avoid silly warning
Date: Wed, 23 May 2018 12:25:47 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 1778135a9ff3b7e5683dc8ab66d75d7b2a2951d1
Author: Daniel Stenberg <address@hidden>
AuthorDate: Tue Apr 24 14:14:23 2018 +0200

    examples/http2-upload: expand buffer to avoid silly warning
    
    http2-upload.c:135:44: error: ā€˜%02dā€™ directive output may be truncated
    writing between 2 and 11 bytes into a region of size between 8 and 17
---
 docs/examples/http2-upload.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/examples/http2-upload.c b/docs/examples/http2-upload.c
index d7aa320ed..2a08b89db 100644
--- a/docs/examples/http2-upload.c
+++ b/docs/examples/http2-upload.c
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2017, Daniel Stenberg, <address@hidden>, et al.
+ * Copyright (C) 1998 - 2018, Daniel Stenberg, <address@hidden>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -113,7 +113,7 @@ int my_trace(CURL *handle, curl_infotype type,
              char *data, size_t size,
              void *userp)
 {
-  char timebuf[20];
+  char timebuf[60];
   const char *text;
   int num = hnd2num(handle);
   static time_t epoch_offset;

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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