mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-10 01:58:44 -04:00
This commit fixes some calls to functions that are taking a format string and an optional set of parameters as arguments. At some places no format string was specified if only a simple C string was to be sprintf()ed. However for security reasons this is bad and was replaced by code like sprintf( dest, "%s", str );