Subj : src/sbbs3/sauce.c To : Git commit to main/sbbs/master From : Rob Swindell (on Windows 11) Date : Sat Mar 23 2024 04:12 pm https://gitlab.synchro.net/main/sbbs/-/commit/c8634c7adc3633923d5db58f Modified Files: src/sbbs3/sauce.c Log Message: SAFECOPY (now using strlcpy) requires the source is terminated .... so use strncpy() and TERMINATE() here (instead of SAFECOPY) to resolve newly reported Coverity issues. There may be other places where we're using SAFECOPY() with an unterminated source string that would've been fine before we switched SAFECOPY from using strncpy to strlcpy. So we should reconsider that change. .