1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

strcat(3) now nul-terminates strings properly.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-11-19 10:32:08 +01:00
parent a0eebc01db
commit 3d7e565d23

View file

@ -69,6 +69,8 @@ namespace Maxsi
Dest++; Src++;
}
*Dest = '\0';
return OriginalDest;
}