diff options
author | Jason A. Donenfeld | 2018-07-04 03:13:31 +0200 |
---|---|---|
committer | Jason A. Donenfeld | 2018-07-04 03:13:41 +0200 |
commit | 08a2b1b8f812c6d77489467c8ff120979c297bed (patch) | |
tree | 68b95757d8f410a82b2f1bb01440cc7cf0e0ed63 /ui-shared.c | |
parent | c4167cbd65acef801e6132ba1182f6ce246ed630 (diff) | |
download | cgit-08a2b1b8f812c6d77489467c8ff120979c297bed.tar.gz cgit-08a2b1b8f812c6d77489467c8ff120979c297bed.tar.bz2 cgit-08a2b1b8f812c6d77489467c8ff120979c297bed.zip |
Fix gcc 8.1.1 compiler warnings
CC ../shared.o
../shared.c: In function ‘expand_macro’:
../shared.c:487:3: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=]
strncpy(name, value, len);
^~~~~~~~~~~~~~~~~~~~~~~~~
../shared.c:484:9: note: length computed here
len = strlen(value);
^~~~~~~~~~~~~
../ui-shared.c: In function ‘cgit_repobasename’:
../ui-shared.c:136:2: warning: ‘strncpy’ specified bound 1024 equals destination size [-Wstringop-truncation]
strncpy(rvbuf, reponame, sizeof(rvbuf));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CC ../ui-ssdiff.o
../ui-ssdiff.c: In function ‘replace_tabs’:
../ui-ssdiff.c:142:4: warning: ‘strncat’ output truncated copying between 1 and 8 bytes from a string of length 8 [-Wstringop-truncation]
strncat(result, spaces, 8 - (strlen(result) % 8));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui-shared.c')
-rw-r--r-- | ui-shared.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/ui-shared.c b/ui-shared.c index 066a470..739505a 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -133,20 +133,25 @@ const char *cgit_repobasename(const char *reponame) | |||
133 | static char rvbuf[1024]; | 133 | static char rvbuf[1024]; |
134 | int p; | 134 | int p; |
135 | const char *rv; | 135 | const char *rv; |
136 | strncpy(rvbuf, reponame, sizeof(rvbuf)); | 136 | size_t len; |
137 | if (rvbuf[sizeof(rvbuf)-1]) | 137 | |
138 | len = strlcpy(rvbuf, reponame, sizeof(rvbuf)); | ||
139 | if (len >= sizeof(rvbuf)) | ||
138 | die("cgit_repobasename: truncated repository name '%s'", reponame); | 140 | die("cgit_repobasename: truncated repository name '%s'", reponame); |
139 | p = strlen(rvbuf)-1; | 141 | p = len - 1; |
140 | /* strip trailing slashes */ | 142 | /* strip trailing slashes */ |
141 | while (p && rvbuf[p] == '/') rvbuf[p--] = 0; | 143 | while (p && rvbuf[p] == '/') |
144 | rvbuf[p--] = '\0'; | ||
142 | /* strip trailing .git */ | 145 | /* strip trailing .git */ |
143 | if (p >= 3 && starts_with(&rvbuf[p-3], ".git")) { | 146 | if (p >= 3 && starts_with(&rvbuf[p-3], ".git")) { |
144 | p -= 3; rvbuf[p--] = 0; | 147 | p -= 3; |
148 | rvbuf[p--] = '\0'; | ||
145 | } | 149 | } |
146 | /* strip more trailing slashes if any */ | 150 | /* strip more trailing slashes if any */ |
147 | while ( p && rvbuf[p] == '/') rvbuf[p--] = 0; | 151 | while (p && rvbuf[p] == '/') |
152 | rvbuf[p--] = '\0'; | ||
148 | /* find last slash in the remaining string */ | 153 | /* find last slash in the remaining string */ |
149 | rv = strrchr(rvbuf,'/'); | 154 | rv = strrchr(rvbuf, '/'); |
150 | if (rv) | 155 | if (rv) |
151 | return ++rv; | 156 | return ++rv; |
152 | return rvbuf; | 157 | return rvbuf; |