mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
Drop parens from around already-parenthesized defines
This commit is contained in:
@@ -71,7 +71,7 @@ char *strnappend(const char *s, const char *suffix, size_t b) {
|
||||
assert(suffix);
|
||||
|
||||
a = strlen(s);
|
||||
if (b > (SIZE_MAX) - a)
|
||||
if (b > SIZE_MAX - a)
|
||||
return NULL;
|
||||
|
||||
r = new(char, a+b+1);
|
||||
|
||||
Reference in New Issue
Block a user