Skip to content

Commit 7733667

Browse files
monneratbagder
authored andcommitted
silly web server: silent a compilation warning
Recent gcc warns when byte count of strncpy() equals the destination buffer size. Since the destination buffer is previously cleared and the source string is always shorter, reducing the byte count by one silents the warning without affecting the result. Closes curl#5059
1 parent 06a1b82 commit 7733667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/server/sws.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2163,7 +2163,7 @@ int main(int argc, char *argv[])
21632163
case AF_UNIX:
21642164
memset(&me.sau, 0, sizeof(me.sau));
21652165
me.sau.sun_family = AF_UNIX;
2166-
strncpy(me.sau.sun_path, unix_socket, sizeof(me.sau.sun_path));
2166+
strncpy(me.sau.sun_path, unix_socket, sizeof(me.sau.sun_path) - 1);
21672167
rc = bind(sock, &me.sa, sizeof(me.sau));
21682168
if(0 != rc && errno == EADDRINUSE) {
21692169
struct stat statbuf;

0 commit comments

Comments
 (0)