IMPROVES-i1 trim() fin initialized (done also i7 and i8)

This commit is contained in:
2026-05-22 19:45:05 -03:00
parent 29e4be2bad
commit 6efce8c601

View File

@@ -134,7 +134,7 @@ static int uselesschar(int c)
/* remove leading/trailing whitespace + collapse internal multiple whitespace */
static void trim(char *s)
{
int len, i, j, fin;
int len, i, j, fin = 0;
if(!s)
return;