gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnunet] 01/03: use GNUNET_strlcpy in strings.c too


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 01/03: use GNUNET_strlcpy in strings.c too
Date: Thu, 27 Jun 2019 11:43:23 +0200

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

lurchi pushed a commit to branch master
in repository gnunet.

commit 6e75970dbd2e05d75712ee2112002c1c18a52074
Author: lurchi <address@hidden>
AuthorDate: Thu Jun 27 11:04:15 2019 +0200

    use GNUNET_strlcpy in strings.c too
---
 src/util/strings.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/util/strings.c b/src/util/strings.c
index d69244e83..ae0544296 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -826,8 +826,7 @@ GNUNET_STRINGS_absolute_time_to_string (struct 
GNUNET_TIME_Absolute t)
         (uint8_t *) buf, &ssize);
     if (conved != (uint8_t *) buf)
     {
-      strncpy (buf, (char *) conved, sizeof (buf));
-      buf[255 - 1] = '\0';
+      GNUNET_strlcpy (buf, (char *) conved, sizeof (buf));
       free (conved);
     }
   }

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



reply via email to

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