Quiet Clang Static Analyzer warnings.

Most of the warnings were caused by uninitialized values. Some were in plug-ins that didn't have a break in a switch, causing the memory to be deleted twice.
This commit is contained in:
C.W. Betts
2024-04-19 17:42:17 -06:00
parent 0d6fcb1e7e
commit 7d7f5bf896
82 changed files with 99 additions and 55 deletions

View File

@@ -249,7 +249,7 @@ void OutrageMessageBox(char *str, ...) {
int OutrageMessageBox(int type, char *str, ...) {
char buf[BUF_LEN];
va_list arglist;
int os_flags;
int os_flags = 0;
int nchars;
va_start(arglist, str);