mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
11 lines
251 B
C
11 lines
251 B
C
--- src/ice_string.c
|
|
+++ src/ice_string.c
|
|
@@ -334,8 +334,6 @@
|
|
|
|
char *safe_strcat(char *dest, const char *src, unsigned int maxsize)
|
|
{
|
|
- int size = 0;
|
|
-
|
|
if (!dest || !src) return dest;
|
|
|
|
if (ice_strlen(dest) + ice_strlen(src) + 1 >= maxsize) {
|