Flawfinder version 1.26, (C) 2001-2004 David A. Wheeler. Number of dangerous functions in C/C++ ruleset: 158 wine-git/dlls/advapi32/tests/security.c:823: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/advapi32/tests/security.c:823: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/advapi32/tests/security.c:833: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/advapi32/tests/security.c:833: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/advapi32/tests/security.c:2362: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/advapi32/tests/security.c:2362: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/kernel32/path.c:1120: [5] (race) chmod: This accepts filename arguments; if an attacker can move those files, a race condition results. . Use fchmod( ) instead. wine-git/dlls/kernel32/tests/sync.c:309: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/kernel32/tests/sync.c:309: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/kernel32/volume.c:91: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/dlls/mciavi32/info.c:257: [5] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is high; the length parameter appears to be a constant, instead of computing the number of characters left. wine-git/dlls/mountmgr.sys/mountmgr.c:84: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/dlls/msxml3/tests/saxreader.c:143: [5] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is high, it appears that the size is given as bytes, but the function requires size as characters. wine-git/dlls/shlwapi/thread.c:80: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/dlls/shlwapi/thread.c:80: [5] (misc) SetSecurityDescriptorDacl: Never create NULL ACLs; an attacker can set it to Everyone (Deny All Access), which would even forbid administrator access. wine-git/include/msvcrt/io.h:161: [5] (race) chmod: This accepts filename arguments; if an attacker can move those files, a race condition results. . Use fchmod( ) instead. wine-git/include/msvcrt/stdio.h:171: [5] (buffer) gets: Does not check for buffer overflows. Use fgets() instead. wine-git/include/tchar.h:77: [5] (buffer) _getts: Does not check for buffer overflows. Use fgets() instead. wine-git/include/tchar.h:77: [5] (buffer) gets: Does not check for buffer overflows. Use fgets() instead. wine-git/include/tchar.h:77: [5] (buffer) gets: Does not check for buffer overflows. Use fgets() instead. wine-git/include/tchar.h:106: [5] (race) chmod: This accepts filename arguments; if an attacker can move those files, a race condition results. . Use fchmod( ) instead. wine-git/include/wine/port.h:323: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/libs/port/readlink.c:27: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/programs/winecfg/drive.c:385: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/programs/winecfg/libraries.c:246: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/programs/winecfg/theme.c:793: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/server/change.c:900: [5] (race) readlink: This accepts filename arguments; if an attacker can move those files or change the link content, a race condition results. Also, it does not terminate with ASCII NUL. Reconsider approach. wine-git/server/request.c:725: [5] (race) chmod: This accepts filename arguments; if an attacker can move those files, a race condition results. . Use fchmod( ) instead. wine-git/tools/winegcc/utils.c:201: [5] (race) chmod: This accepts filename arguments; if an attacker can move those files, a race condition results. . Use fchmod( ) instead. wine-git/dlls/advapi32/crypt.c:52: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/advapi32/lsa.c:151: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/lsa.c:155: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/lsa.c:404: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/lsa.c:407: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:98: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:105: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:124: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:181: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:199: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:228: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:258: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:321: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:345: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:366: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:433: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/registry.c:435: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:731: [4] (access) SetThreadToken: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/advapi32/security.c:1431: [4] (access) ImpersonateNamedPipeClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/advapi32/security.c:1919: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:1921: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:1923: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:1940: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:1957: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:1962: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:1963: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:1965: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:2012: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:2027: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:2032: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:2211: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:2213: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:2215: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:2217: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/security.c:2312: [4] (access) ImpersonateLoggedOnUser: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/advapi32/security.c:2477: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/security.c:2490: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/advapi32/tests/crypt.c:711: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/advapi32/tests/crypt.c:711: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/advapi32/tests/crypt.c:914: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/advapi32/tests/registry.c:229: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/advapi32/tests/registry.c:794: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/advapi32/tests/security.c:893: [4] (access) ImpersonateLoggedOnUser: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/advapi32/tests/security.c:1709: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/tests/security.c:1723: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/tests/security.c:1724: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/advapi32/tests/security.c:1823: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/advapi32/tests/service.c:208: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/advapi32/tests/service.c:210: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/advpack/tests/advpack.c:198: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/advpack/tests/advpack.c:460: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/advpack/tests/files.c:158: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/advpack/tests/install.c:60: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/advpack/tests/install.c:136: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/advpack/tests/install.c:138: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/advpack/tests/install.c:229: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/advpack/tests/install.c:255: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/comctl32/propsheet.c:180: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comctl32/propsheet.c:2968: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comctl32/rebar.c:305: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comctl32/rebar.c:322: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comctl32/string.c:188: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comctl32/tests/imagelist.c:817: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/comctl32/tests/misc.c:102: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comctl32/tests/misc.c:123: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comctl32/tests/rebar.c:335: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/filedlgbrowser.c:85: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/finddlg32.c:111: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/finddlg32.c:147: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/finddlg32.c:148: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg.c:221: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg.c:225: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg.c:229: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg.c:832: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/printdlg.c:840: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/printdlg.c:2086: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/printdlg.c:2236: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/printdlg.c:2491: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/comdlg32/printdlg.c:2493: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/comdlg32/printdlg.c:2496: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/comdlg32/printdlg.c:2508: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/dlls/comdlg32/printdlg.c:3532: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/printdlg.c:3639: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/comdlg32/printdlg16.c:84: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg16.c:88: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg16.c:92: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/comdlg32/printdlg16.c:354: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/base64.c:29: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/base64.c:99: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/base64.c:143: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/base64.c:193: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/base64.c:195: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/base64.c:202: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/base64.c:204: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/cert.c:32: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/cert.c:1972: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/cert.c:2057: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/cert.c:2061: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/cert.c:2086: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/chain.c:30: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/collectionstore.c:26: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/context.c:27: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/crl.c:28: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:59: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:4969: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:4992: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:5009: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:5021: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:5047: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/decode.c:5082: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:53: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4162: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4175: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4191: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4203: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4219: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4251: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4270: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4350: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4391: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/encode.c:4433: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/filestore.c:27: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/filestore.c:276: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/filestore.c:295: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/filestore.c:302: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/filestore.c:330: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/main.c:33: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/message.c:26: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/msg.c:32: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/msg.c:768: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/msg.c:1562: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/msg.c:1960: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/msg.c:1983: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/object.c:28: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/oid.c:36: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/oid.c:141: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/oid.c:187: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/crypt32/oid.c:269: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/proplist.c:27: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/protectdata.c:47: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/protectdata.c:130: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/crypt32/protectdata.c:562: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/provstore.c:26: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/regstore.c:29: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/rootstore.c:42: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/rootstore.c:86: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/serialize.c:30: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/sip.c:35: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/store.c:42: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/str.c:27: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/crypt32/tests/base64.c:238: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/tests/base64.c:241: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/tests/base64.c:243: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/tests/base64.c:270: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/tests/base64.c:272: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/tests/base64.c:273: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/tests/base64.c:275: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/tests/cert.c:406: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/cert.c:462: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/cert.c:464: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/cert.c:467: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/crl.c:366: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/crl.c:418: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/crl.c:420: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/crypt32/tests/oid.c:397: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/crypt32/tests/sip.c:186: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/crypt32/tests/store.c:676: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/tests/store.c:733: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/crypt32/tests/store.c:788: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:394: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/dlls/d3dxof/d3dxof.c:442: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:682: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:698: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/d3dxof/d3dxof.c:743: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:790: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:826: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:869: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/d3dxof/d3dxof.c:917: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/dwarf.c:1868: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/dwarf.c:1870: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/source.c:73: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/source.c:75: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/source.c:206: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/stabs.c:172: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/stabs.c:1242: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dbghelp/stabs.c:1264: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/stabs.c:1465: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dbghelp/storage.c:111: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dinput/effect_linuxinput.c:878: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dinput/joystick_linux.c:146: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dinput/joystick_linux.c:149: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dinput/joystick_linux.c:418: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dinput/joystick_linux.c:1041: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dinput/joystick_linuxinput.c:233: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/dinput/joystick_linuxinput.c:342: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dinput/joystick_linuxinput.c:343: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dinput/tests/joystick.c:388: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dmband/dmutils.c:148: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:149: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:150: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:151: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:152: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:153: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:154: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:155: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:156: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:735: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:748: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:749: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:750: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmband/dmutils.c:751: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:739: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:740: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:741: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:743: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:744: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:745: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:746: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmcompos/dmcompos_main.c:747: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:677: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:678: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:679: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:680: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:681: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:682: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:683: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:684: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:685: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:720: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:733: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:734: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:735: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmime/dmutils.c:736: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:493: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:494: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:495: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:496: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:497: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:498: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:499: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:500: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:501: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:516: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:529: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:530: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:531: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmloader/debug.c:532: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1023: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1024: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1025: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1027: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1028: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1029: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1030: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmscript/dmscript_main.c:1031: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:688: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:689: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:690: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:691: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:692: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:693: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:694: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:695: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:696: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:731: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:744: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:745: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:746: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmstyle/dmutils.c:747: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:595: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:596: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:597: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:599: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:600: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:601: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:602: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dmusic/dmusic_main.c:603: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dnsapi/dnsapi.h:56: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dnsapi/query.c:184: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplay.c:1329: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplay.c:1335: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplay.c:2546: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplay.c:2556: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplay.c:2750: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplay.c:2760: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:152: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:679: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:687: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:703: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:711: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:1083: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplayx_global.c:1089: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1096: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1110: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1124: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1138: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1241: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1243: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dplayx/dplobby.c:1246: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/dplobby.c:1250: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dplayx/dplobby.c:1253: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:635: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2206: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2214: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2220: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2229: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2238: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2246: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2254: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2262: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2272: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2280: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2306: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2314: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2322: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2330: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2340: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2348: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2371: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:2384: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:3497: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:3838: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:6082: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:6091: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:6122: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dplayx/tests/dplayx.c:6131: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:634: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:635: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:683: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:684: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:731: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:732: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:779: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/propset.c:780: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/dsound/tests/capture.c:94: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dsound/tests/ds3d.c:133: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/dswave/dswave_main.c:523: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:524: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:525: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:527: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:528: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:529: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:530: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/dswave/dswave_main.c:531: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/fusion/asmcache.c:245: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/fusion/assembly.c:751: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/fusion/assembly.c:787: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/fusion/assembly.c:873: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/fusion/assembly.c:892: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/fusion/assembly.c:896: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/fusion/assembly.c:935: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/gdi32/freetype.c:630: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/gdi32/freetype.c:638: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/gdi32/freetype.c:761: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/gdi32/freetype.c:1729: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/gdi32/freetype.c:1833: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/freetype.c:2121: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/gdi32/freetype.c:2361: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/gdi32/freetype.c:2361: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/gdi32/freetype.c:2547: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/printdrv16.c:323: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/gdi32/printdrv16.c:360: [4] (shell) execl: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/gdi32/printdrv16.c:441: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/printdrv16.c:445: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/printdrv16.c:656: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/printdrv16.c:657: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/gdi32/printdrv16.c:751: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/printdrv16.c:752: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/gdi32/tests/font.c:684: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/tests/font.c:1054: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/tests/font.c:1727: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/gdi32/tests/font.c:1758: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/gdi32/tests/font.c:1816: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/gdi32/tests/font.c:2229: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/tests/font.c:2251: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/gdi32/tests/metafile.c:1901: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/gdiplus/graphics.c:875: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/gdiplus/graphics.c:883: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/gdiplus/graphics.c:885: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/gphoto2.ds/ds_ctrl.c:91: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/gphoto2.ds/ds_ctrl.c:93: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/imagehlp/access.c:204: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/infosoft/infosoft_main.c:173: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/computername.c:104: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/computername.c:264: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/console.c:276: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/console.c:299: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/console.c:319: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/console.c:350: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/console.c:357: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/error16.c:234: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/except.c:269: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/kernel32/except.c:291: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/file.c:81: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:109: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1342: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1343: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1344: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1354: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1379: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1397: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1400: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1403: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1434: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1462: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1503: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file.c:1510: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/file16.c:106: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/file16.c:398: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/format_msg.c:169: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/format_msg.c:238: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/format_msg.c:242: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/format_msg.c:268: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/kernel32/kernel_private.h:105: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/lzexpand.c:252: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/lzexpand.c:517: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/ne_module.c:444: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/ne_module.c:796: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/ne_module.c:1061: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/ne_module.c:1677: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/ne_module.c:2047: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/ne_segment.c:978: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/ne_segment.c:979: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/oldconfig.c:358: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/kernel32/oldconfig.c:374: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/kernel32/oldconfig.c:390: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/oldconfig.c:442: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/oldconfig.c:443: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/oldconfig.c:444: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/process.c:1179: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/process.c:1180: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/process.c:2024: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/kernel32/process.c:2038: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/process.c:2084: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/process.c:2512: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/process.c:2531: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/process.c:2657: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/process.c:2670: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/process.c:2674: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/snoop16.c:155: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/snoop16.c:218: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/string.c:158: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/string.c:171: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/sync.c:524: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:528: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:535: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:542: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:564: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:714: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:718: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:725: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:732: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:754: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:840: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:844: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:851: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:858: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:880: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:960: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:964: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:971: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:978: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:1000: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:1187: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:1235: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/sync.c:1247: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/system.c:33: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/kernel32/tests/actctx.c:1097: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/debugger.c:57: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/debugger.c:59: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/debugger.c:215: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/debugger.c:222: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/debugger.c:286: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/environ.c:274: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:813: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/tests/file.c:1285: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1311: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1322: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1331: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1348: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1383: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1392: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1401: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/file.c:1410: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/locale.c:119: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/locale.c:119: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/module.c:148: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/tests/module.c:158: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/tests/path.c:110: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:114: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:115: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:116: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:244: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:383: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:385: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:395: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:400: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:405: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:410: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:438: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:446: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:449: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:452: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:455: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:456: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:459: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:462: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:463: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:466: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:474: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:476: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:478: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:480: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:482: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:484: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:508: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:516: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:533: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:538: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:542: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:552: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:578: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:580: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/kernel32/tests/path.c:607: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:668: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:670: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:673: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:675: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:688: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:708: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:713: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:721: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:723: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:731: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:733: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:742: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:744: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:751: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:753: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:759: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:761: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:776: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/path.c:900: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/pipe.c:839: [4] (access) SetThreadToken: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/kernel32/tests/pipe.c:953: [4] (access) ImpersonateNamedPipeClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/kernel32/tests/pipe.c:964: [4] (access) ImpersonateNamedPipeClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/kernel32/tests/pipe.c:987: [4] (access) ImpersonateNamedPipeClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/kernel32/tests/pipe.c:1004: [4] (access) ImpersonateNamedPipeClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/kernel32/tests/process.c:165: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/process.c:205: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/kernel32/tests/process.c:463: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:501: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:539: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:577: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:615: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:654: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:692: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:732: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:753: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:772: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:780: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:787: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:795: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:807: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:815: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:837: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:943: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:961: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:976: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:995: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/process.c:1027: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:1074: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:1161: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:1263: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/process.c:1300: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/profile.c:331: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/thread.c:87: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/toolhelp.c:69: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/tests/toolhelp.c:327: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/tests/virtual.c:47: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/kernel32/thunk.c:121: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/version.c:140: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/virtual.c:344: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:405: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:428: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:432: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:439: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:448: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:470: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:495: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:498: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:520: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:530: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:531: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/virtual.c:532: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/volume.c:121: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/volume.c:1129: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/kernel32/vxd.c:174: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/kernel32/wowthunk.c:755: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/localui/tests/localui.c:301: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/localui/tests/localui.c:312: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/mapi32/sendmail.c:180: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/mapi32/tests/prop.c:1147: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1245: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1246: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1249: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1250: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1253: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1254: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1261: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1262: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1270: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1336: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/tests/prop.c:1337: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mapi32/util.c:874: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/mountmgr.sys/device.c:58: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/mountmgr.sys/device.c:205: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/mountmgr.sys/mountmgr.c:418: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/mscms/handle.c:164: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/mscms_priv.h:79: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1257: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1309: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1384: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1388: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1394: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1411: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1440: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1447: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1466: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1467: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/profile.c:1516: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/mscms/tests/profile.c:142: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/mshtml/install.c:152: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/mshtml/install.c:240: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/mshtml/persist.c:142: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/cond.tab.c:854: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/msi/font.c:153: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/msi/sql.tab.c:937: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/msi/tests/db.c:251: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/db.c:267: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/db.c:283: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/db.c:299: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/db.c:315: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/db.c:1131: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/db.c:1307: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/msi/tests/db.c:1350: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msi/tests/db.c:1352: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msi/tests/format.c:120: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/format.c:136: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/format.c:152: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/format.c:168: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/format.c:182: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/format.c:197: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/format.c:2312: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/format.c:2328: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/format.c:2348: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/format.c:2355: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/format.c:2400: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/format.c:2414: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/msi/tests/format.c:2422: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/format.c:2425: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/install.c:1180: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:1701: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/msi/tests/install.c:1703: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/msi/tests/install.c:1742: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/msi/tests/install.c:1744: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/msi/tests/install.c:2071: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/msi/tests/install.c:2337: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2419: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2518: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2630: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2708: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2838: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2873: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:2985: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:3006: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:3065: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:3084: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:3109: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:3128: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/install.c:4054: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/install.c:4063: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/install.c:4385: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/msi.c:168: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/package.c:318: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:332: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:347: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:363: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:379: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:395: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:411: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:428: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:444: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:460: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:476: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:492: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:506: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:522: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:538: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msi/tests/package.c:812: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/package.c:818: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/package.c:845: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msi/tests/package.c:6016: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/msi/tests/package.c:7813: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/dir.c:56: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/dir.c:96: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/dir.c:430: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/dir.c:529: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/dir.c:887: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/dir.c:1001: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/msvcrt/dir.c:1005: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/errno.c:208: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/errno.c:227: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msvcrt/errno.c:229: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msvcrt/file.c:1436: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/file.c:1437: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/file.c:1438: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/file.c:1490: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/file.c:1498: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/file.c:2978: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msvcrt/file.c:2982: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/mbcs.c:797: [4] (buffer) _mbscat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/msvcrt/mbcs.c:799: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/msvcrt/mbcs.c:806: [4] (buffer) _mbscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/msvcrt/mbcs.c:808: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/string.c:42: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/dir.c:89: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/dir.c:138: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/dir.c:145: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/dir.c:153: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/dir.c:162: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/dir.c:169: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/tests/file.c:1071: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/msvcrt/tests/printf.c:41: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:46: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:51: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:56: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:61: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:66: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:70: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:74: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:77: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:81: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:85: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:89: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:93: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:97: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:101: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:105: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:109: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:113: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:117: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:121: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:125: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:129: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:133: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:137: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:141: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:145: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:149: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:153: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:157: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:161: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:165: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:169: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:173: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:177: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:181: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:185: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:189: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:193: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:197: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:201: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:205: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:209: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:213: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:217: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:221: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:229: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:234: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:239: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:251: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:256: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:261: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:266: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:271: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:276: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:281: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:286: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:291: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:296: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:301: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:306: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:311: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:316: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:321: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:326: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:331: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:336: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:341: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:346: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:351: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:356: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:361: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:366: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:371: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:376: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:381: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:386: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:392: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:398: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:403: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:408: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:413: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:418: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:423: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:428: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:433: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:438: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:443: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:448: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:453: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:458: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:463: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:468: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:473: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:478: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:483: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:488: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:493: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:498: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:503: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:520: [4] (format) swprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:522: [4] (format) swprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:524: [4] (format) swprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:526: [4] (format) swprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/tests/printf.c:548: [4] (format) _snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/msvcrt/tests/printf.c:655: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/msvcrt/tests/scanf.c:90: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/dlls/msvcrt/tests/scanf.c:99: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msvcrt/tests/scanf.c:187: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/dlls/msvcrt/tests/scanf.c:200: [4] (buffer) scanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/dlls/msvcrt/tests/string.c:629: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/time.c:418: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/time.c:439: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/undname.c:332: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/msvcrt/undname.c:1008: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/undname.c:1086: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/undname.c:1144: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/msvcrt/undname.c:1450: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msvcrt/wcs.c:736: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msvcrt/wcs.c:741: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msxml3/regsvr.c:300: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/msxml3/regsvr.c:302: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/msxml3/saxreader.c:1272: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/msxml3/tests/xmldoc.c:36: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/msxml3/tests/xmlelem.c:233: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/netapi32/tests/access.c:315: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/debugtools.c:125: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/ntdll/directory.c:252: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:460: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:488: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:524: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:561: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/ntdll/directory.c:623: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:644: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:1687: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:1697: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:1731: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:1745: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:1782: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:1939: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:2139: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/directory.c:2140: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/ntdll/directory.c:2141: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/ntdll/file.c:111: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:115: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:143: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:153: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:174: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:215: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:2445: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:2456: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/file.c:2466: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/ntdll_misc.h:79: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/om.c:79: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/om.c:252: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/om.c:260: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/process.c:423: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/process.c:431: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:52: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:63: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:68: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:91: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:104: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:115: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:121: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:129: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:145: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/reg.c:149: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/relay.c:663: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/rtl.c:309: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/ntdll/rtl.c:347: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/ntdll/serial.c:1117: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:106: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/ntdll/server.c:107: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/ntdll/server.c:118: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/ntdll/server.c:130: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/ntdll/server.c:202: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/ntdll/server.c:473: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:497: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:522: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:535: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:544: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:544: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:585: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:595: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:601: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:610: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:634: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:643: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:667: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:670: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/server.c:868: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/string.c:121: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/ntdll/string.c:148: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/string.c:763: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/ntdll/string.c:774: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/ntdll/string.c:781: [4] (format) _snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/ntdll/string.c:786: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/ntdll/string.c:797: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/ntdll/string.c:809: [4] (buffer) vsscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/dlls/ntdll/string.c:873: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/sync.c:141: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:166: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:187: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:197: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:417: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:439: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:460: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:470: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:523: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:537: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:555: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/sync.c:565: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/tests/exception.c:647: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/ntdll/tests/path.c:209: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/path.c:224: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/port.c:172: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/ntdll/tests/port.c:208: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/ntdll/tests/port.c:220: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/ntdll/tests/port.c:317: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/reg.c:124: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/tests/rtl.c:101: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/rtl.c:115: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/rtl.c:191: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/rtl.c:193: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/rtl.c:197: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/rtl.c:219: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/tests/rtl.c:242: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ntdll/thread.c:616: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/thread.c:624: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/virtual.c:1915: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/virtual.c:1951: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/virtual.c:1974: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ntdll/virtual.c:1983: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/odbc32/proxyodbc.c:576: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/odbc32/proxyodbc.c:857: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/odbc32/proxyodbc.c:858: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/compobj.c:1428: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/compobj.c:1437: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/compobj.c:1449: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/compobj.c:1460: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/compobj.c:1487: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/compobj.c:3330: [4] (access) CoImpersonateClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/ole32/compobj_private.h:195: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/compobj_private.h:196: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/ole16.c:437: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/ole16.c:600: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/ole32/storage32.c:6428: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ole32/storage32.c:7245: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/storage32.c:7250: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/storage32.c:7270: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/storage32.c:7606: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/tests/clipboard.c:316: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ole32/tests/marshal.c:2584: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/ole32/tests/storage32.c:1090: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/oleaut32/ole2disp.c:92: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/oleaut32/ole2disp.c:149: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/oleaut32/tests/typelib.c:926: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/oleaut32/tmarshal.c:302: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/oleaut32/typelib.c:3020: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/dlls/oledlg/pastespl.c:79: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/opengl32/opengl_ext.c:3932: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/opengl32/opengl_ext.c:3935: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/opengl32/opengl_ext.c:3937: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/opengl32/opengl_ext.c:3942: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/opengl32/opengl_ext.c:3945: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/opengl32/opengl_ext.c:3947: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/opengl32/wgl.c:671: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/pdh/tests/pdh.c:720: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/pdh/tests/pdh.c:728: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/pdh/tests/pdh.c:769: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/pdh/tests/pdh.c:777: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/propsys/propvar.c:56: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/rasapi32/rasapi.c:258: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/riched20/para.c:377: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/riched20/para.c:378: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/riched20/para.c:382: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/riched20/reader.c:801: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/riched20/style.c:249: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/riched20/tests/editor.c:1531: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1532: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1582: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1583: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1623: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1624: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1840: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/tests/editor.c:1841: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/writer.c:121: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/riched20/writer.c:438: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/riched20/writer.c:459: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_binding.c:1050: [4] (access) RpcImpersonateClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/rpcrt4/rpc_message.c:274: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:245: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:245: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:267: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:267: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:292: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:292: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:313: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:313: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:346: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:346: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:364: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:364: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/rpc_transport.c:1652: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/tests/server.c:66: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/rpcrt4/tests/server.c:697: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/rsaenh/rsaenh.c:41: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/rsaenh/rsaenh.c:953: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/rsaenh/rsaenh.c:984: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/rsaenh/rsaenh.c:1010: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/rsaenh/tests/rsaenh.c:81: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/rsaenh/tests/rsaenh.c:83: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/sane.ds/ds_ctrl.c:615: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/sane.ds/sane_main.c:578: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/sane.ds/sane_main.c:594: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/secur32/dispatcher.c:104: [4] (shell) execvp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/secur32/dispatcher.c:119: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/dispatcher.c:120: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/dispatcher.c:121: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/dispatcher.c:122: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/dispatcher.c:123: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/dispatcher.c:124: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/dispatcher.c:125: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:911: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:912: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:913: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:915: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:916: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:917: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:918: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:919: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:920: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:921: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:922: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1308: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1309: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1310: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1353: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1355: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1356: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1357: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1358: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1359: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1360: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1501: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1502: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1503: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1504: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1506: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1508: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1512: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1513: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1514: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1515: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1517: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1519: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1535: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1537: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1577: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1578: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1579: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1580: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1582: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1585: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1772: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1777: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1797: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1800: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1844: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/ntlm.c:1850: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/secur32.c:101: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/secur32/secur32.c:132: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/secur32/secur32.c:281: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/secur32/secur32.c:352: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/secur32/secur32_priv.h:83: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:922: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:989: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:990: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:992: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1002: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1007: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1022: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1025: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1026: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1032: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1039: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1043: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1053: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1054: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1055: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1056: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1063: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1067: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1068: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1073: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1074: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1094: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1097: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1098: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1102: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1106: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1110: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1111: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1113: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1114: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/tests/ntlm.c:1119: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:160: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:161: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:162: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:163: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:168: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:170: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:172: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:174: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:179: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:181: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:183: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/util.c:185: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/secur32/wrapper.c:568: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/secur32/wrapper.c:580: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/secur32/wrapper.c:581: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/serialui/tests/confdlg.c:92: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/serialui/tests/confdlg.c:167: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/serialui/tests/confdlg.c:256: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/serialui/tests/confdlg.c:348: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/setupapi/devinst16.c:111: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/queue.c:387: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupcab.c:357: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupcab.c:566: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupcab.c:569: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupcab.c:576: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupx_main.c:327: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupx_main.c:481: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupx_main.c:486: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupx_main.c:491: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/setupx_main.c:583: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/tests/devinst.c:325: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/setupapi/tests/install.c:91: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:121: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:129: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:133: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:162: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:200: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:359: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/install.c:395: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/tests/install.c:408: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/setupapi/tests/misc.c:52: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/setupapi/tests/misc.c:84: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/setupapi/tests/misc.c:100: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/setupapi/tests/misc.c:180: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/setupapi/tests/misc.c:217: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/setupapi/tests/misc.c:219: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/dlls/setupapi/tests/misc.c:250: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/setupapi/tests/parser.c:366: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/tests/parser.c:367: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/tests/parser.c:392: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/tests/parser.c:515: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/tests/parser.c:516: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/tests/parser.c:517: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/tests/query.c:48: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/setupapi/virtcopy.c:141: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:191: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:445: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/virtcopy.c:448: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/virtcopy.c:490: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:491: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:579: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:580: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:705: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/setupapi/virtcopy.c:708: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/setupapi/virtcopy.c:730: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/shell32/classes.c:305: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/cpanelfolder.c:272: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/cpanelfolder.c:273: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/cpanelfolder.c:274: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/cpanelfolder.c:439: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/dialogs.c:180: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/shell32_main.h:190: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:709: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2154: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2161: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2169: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2180: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2182: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2197: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2224: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shellpath.c:2226: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shfldr_unixfs.c:408: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/shell32/shfldr_unixfs.c:723: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shfldr_unixfs.c:1354: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shfldr_unixfs.c:1390: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shfldr_unixfs.c:1394: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/shfldr_unixfs.c:1769: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shelllink.c:549: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shelllink.c:555: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shelllink.c:595: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shellpath.c:721: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shellpath.c:850: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shellpath.c:871: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shellpath.c:881: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shlexec.c:81: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/shell32/tests/shlexec.c:114: [4] (shell) ShellExecute: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/shell32/tests/shlexec.c:210: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:305: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:320: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:338: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:461: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:681: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:699: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:749: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:822: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:828: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:862: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:882: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:886: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:908: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:978: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:984: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:987: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1000: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1015: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1020: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:1054: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:1075: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1084: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1106: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1115: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1245: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1248: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shlexec.c:1306: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:1312: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:1395: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1413: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:1530: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlexec.c:1543: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1547: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1557: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1563: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlexec.c:1594: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/shell32/tests/shlfileop.c:325: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shlfileop.c:329: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/tests/shlfileop.c:344: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlfileop.c:372: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlfolder.c:1402: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlfolder.c:1409: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlfolder.c:1480: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/tests/shlfolder.c:1482: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/trash.c:240: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/trash.c:247: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/trash.c:263: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/shell32/xdg.c:760: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/xdg.c:769: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shell32/xdg.c:853: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/ordinal.c:3380: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/path.c:2553: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/path.c:3099: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:120: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:128: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:145: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:204: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:217: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:232: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:253: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/tests/shreg.c:271: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/shlwapi/wsprintf.c:256: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/snmpapi/main.c:499: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/twain_32/dsm_ctrl.c:251: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/urlmon/tests/protocol.c:646: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/dlls/user32/dde_client.c:1429: [4] (access) ImpersonateDdeClientWindow: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/user32/dde_misc.c:234: [4] (access) ImpersonateDdeClientWindow: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/dlls/user32/desktop.c:83: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/user32/driver16.c:292: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/network.c:200: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/nonclient.c:1591: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/user32/sysparams.c:45: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/user32/tests/cursoricon.c:179: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/tests/cursoricon.c:725: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/user32/tests/dde.c:2141: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/tests/dde.c:2151: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/tests/input.c:219: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/user32/tests/listbox.c:599: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:658: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:731: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:762: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:837: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:900: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:949: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1120: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1157: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1208: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1252: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1282: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1317: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1397: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/listbox.c:1458: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/menu.c:160: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/menu.c:367: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/menu.c:406: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/tests/menu.c:714: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/menu.c:796: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/monitor.c:66: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/monitor.c:95: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/tests/msg.c:9895: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/user16.c:1717: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/user16.c:1782: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/user16.c:1786: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/user32/user16.c:1804: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/user32/win.h:94: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winhelp.c:88: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/user32/winhelp.c:145: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/user32/winstation.c:60: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:65: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:72: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:79: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:93: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:109: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:113: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:120: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:127: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:138: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:247: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:256: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:263: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:289: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:305: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:309: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:316: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:320: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:333: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:346: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:348: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:461: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/winstation.c:463: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/user32/wsprintf.c:266: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/userenv/tests/userenv.c:139: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/uxtheme/tests/system.c:481: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/version/info.c:337: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/version/install.c:62: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/version/install.c:74: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/version/install.c:379: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/version/install.c:382: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/version/install.c:386: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/version/install.c:399: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/version/install.c:494: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/version/install.c:513: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/version/tests/info.c:535: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/version/tests/install.c:69: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/w32skrnl/w32skernel.c:39: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winealsa.drv/alsa.c:623: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/alsa.c:641: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/alsa.c:644: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/alsa.c:652: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/alsa.c:653: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/alsa.c:654: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/midi.c:131: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/winealsa.drv/midi.c:1156: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winealsa.drv/midi.c:1221: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winealsa.drv/wavein.c:331: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/wavein.c:416: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/wavein.c:419: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/waveinit.c:224: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winealsa.drv/waveinit.c:656: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winealsa.drv/waveinit.c:663: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winealsa.drv/waveout.c:571: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/waveout.c:683: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winealsa.drv/waveout.c:686: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/wineaudioio.drv/audio.c:829: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/wineaudioio.drv/audio.c:1940: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winecoreaudio.drv/audio.c:541: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/arb_program_shader.c:530: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:538: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:554: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:558: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:561: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/arb_program_shader.c:562: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:573: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:584: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:588: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:885: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/arb_program_shader.c:889: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/arb_program_shader.c:922: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/arb_program_shader.c:928: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/arb_program_shader.c:963: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1088: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1116: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1118: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1123: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1126: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1183: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1660: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/arb_program_shader.c:1760: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/baseshader.c:49: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/wined3d/directx.c:515: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/directx.c:1657: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/directx.c:1658: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/glsl_shader.c:781: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:784: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:787: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:790: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:793: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:796: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:799: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:802: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:805: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:808: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:811: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:814: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:818: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:864: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:869: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:873: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:878: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:916: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:918: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:977: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wined3d/glsl_shader.c:1016: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/glsl_shader.c:1578: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/glsl_shader.c:1582: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wined3d/wined3d_main.c:257: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wined3d/wined3d_private.h:2033: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/winedos/dosconf.c:268: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/dosconf.c:308: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/dosconf.c:371: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/dosconf.c:388: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/int21.c:796: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/int21.c:896: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winedos/int21.c:926: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winedos/int2f.c:442: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winedos/module.c:190: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/module.c:399: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/module.c:405: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/module.c:414: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/ppdev.c:190: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winedos/vxd.c:1295: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winedos/vxd.c:1297: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winejoystick.drv/joystick.c:173: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/winejoystick.drv/joystick.c:180: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineoss.drv/audio.c:453: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/wineoss.drv/audio.c:1140: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineoss.drv/audio.c:1185: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wineoss.drv/mixer.c:1467: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineoss.drv/mixer.c:1479: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/afm.c:123: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/download.c:122: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/download.c:254: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/download.c:354: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/escape.c:422: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/font.c:98: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/glyphlist.c:85: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/init.c:557: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/init.c:651: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/init.c:652: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wineps.drv/mkagl.c:269: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/dlls/wineps.drv/mkagl.c:273: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wineps.drv/ppd.c:286: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/ppd.c:747: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/ps.c:240: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:334: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:406: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:463: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:482: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:490: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:507: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:516: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:528: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:546: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:561: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:568: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:584: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:588: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:591: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:603: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/wineps.drv/ps.c:669: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:719: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:726: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:730: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:734: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:738: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/ps.c:747: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:764: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:815: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:823: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:831: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:839: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:847: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:886: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/ps.c:942: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/truetype.c:166: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/truetype.c:168: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wineps.drv/type1.c:98: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type1.c:291: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type1.c:294: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type1afm.c:322: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wineps.drv/type42.c:205: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type42.c:213: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type42.c:222: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type42.c:231: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type42.c:273: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wineps.drv/type42.c:364: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/winex11.drv/opengl.c:3220: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winex11.drv/settings.c:184: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winex11.drv/settings.c:323: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winex11.drv/xfont.c:969: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:1495: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:1497: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:1554: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:1720: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:1806: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winex11.drv/xfont.c:1850: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winex11.drv/xfont.c:1853: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:1949: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:2007: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:2040: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xfont.c:2042: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winex11.drv/xrender.c:747: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winex11.drv/xrender.c:763: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winhttp/session.c:82: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winhttp/session.c:87: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winhttp/session.c:95: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/winhttp/winhttp_private.h:67: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/wininet/ftp.c:2110: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wininet/ftp.c:2490: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/wininet/internet.c:2700: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wininet/internet.c:2702: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/wininet/internet.c:2706: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/wininet/urlcache.c:2429: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wininet/urlcache.c:2431: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wininet/urlcache.c:2435: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wininet/urlcache.c:2675: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wininet/utility.c:288: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/lolvldrv.c:634: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/lolvldrv.c:671: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/lolvldrv.c:672: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/lolvldrv.c:673: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/lolvldrv.c:680: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/lolvldrv.c:689: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winmm/mci.c:1526: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/message16.c:102: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/message16.c:145: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmio.c:623: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:231: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:341: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:342: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:391: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:408: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:409: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:415: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:469: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:717: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:941: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:1219: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:1520: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:3115: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:3137: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/mmsystem.c:3138: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winmm/tests/capture.c:49: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winmm/tests/wave.c:266: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winmm/tests/wave.c:356: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winmm/tests/wave.c:363: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winspool.drv/info.c:410: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winspool.drv/info.c:501: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winspool.drv/info.c:504: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winspool.drv/info.c:582: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winspool.drv/info.c:632: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winspool.drv/info.c:636: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/dlls/winspool.drv/info.c:739: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/dlls/winspool.drv/info.c:742: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/winspool.drv/info.c:7658: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/winspool.drv/info.c:7661: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/winspool.drv/info.c:7837: [4] (shell) execl: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/dlls/wintrust/tests/crypt.c:348: [4] (crypto) crypt: Function crypt is a poor one-way hashing algorithm; since it only accepts passwords of 8 characters or less, and only a two-byte salt, it is excessively vulnerable to dictionary attacks given today's faster computing equipment. Use a different algorithm, such as SHA-1, with a larger non-repeating salt. wine-git/dlls/wintrust/tests/crypt.c:356: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wldap32/init.c:138: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wldap32/init.c:169: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wldap32/init.c:175: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wldap32/init.c:183: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wldap32/init.c:188: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wldap32/misc.c:232: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/dlls/wldap32/wldap32.h:32: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/wnaspi32/aspi.c:155: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/dlls/ws2_32/async.c:216: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/async.c:274: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/async.c:328: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/async.c:330: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/protocol.c:214: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/protocol.c:230: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/protocol.c:247: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/protocol.c:263: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/protocol.c:279: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:406: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ws2_32/socket.c:409: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/dlls/ws2_32/socket.c:2066: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:3496: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:4017: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:4044: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:4069: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:4073: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:4549: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket.c:4749: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket16.c:156: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket16.c:185: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket16.c:212: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket16.c:216: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket16.c:541: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/dlls/ws2_32/socket16.c:542: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/include/dde.h:80: [4] (access) ImpersonateDdeClientWindow: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/msvcrt/conio.h:57: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/conio.h:58: [4] (buffer) scanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/msvcrt/io.h:160: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/msvcrt/io.h:172: [4] (tmpfile) mktemp: Temporary file race condition. wine-git/include/msvcrt/mbstring.h:87: [4] (buffer) _mbscat: Does not check for buffer overflows when concatenating to destination. wine-git/include/msvcrt/mbstring.h:91: [4] (buffer) _mbscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/msvcrt/process.h:84: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:123: [4] (shell) execv: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:125: [4] (shell) execvp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:133: [4] (shell) execl: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:134: [4] (shell) execle: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:135: [4] (shell) execlp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:142: [4] (shell) execl: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:143: [4] (shell) execle: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/process.h:144: [4] (shell) execlp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/stdio.h:145: [4] (format) _snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:159: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:164: [4] (buffer) fscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/include/msvcrt/stdio.h:173: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:180: [4] (buffer) scanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/include/msvcrt/stdio.h:183: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/include/msvcrt/stdio.h:184: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/include/msvcrt/stdio.h:188: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:189: [4] (format) vprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:190: [4] (format) vsprintf: Potential format string problem. Make format string constant. wine-git/include/msvcrt/stdio.h:223: [4] (format) swprintf: Potential format string problem. Make format string constant. wine-git/include/msvcrt/stdio.h:226: [4] (format) vfwprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:227: [4] (format) vswprintf: Potential format string problem. Make format string constant. wine-git/include/msvcrt/stdio.h:228: [4] (format) vwprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/stdio.h:230: [4] (buffer) wscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/include/msvcrt/stdio.h:245: [4] (shell) popen: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/stdio.h:251: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/msvcrt/stdlib.h:203: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/msvcrt/string.h:78: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/include/msvcrt/string.h:82: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/include/msvcrt/string.h:108: [4] (buffer) wcscat: Does not check for buffer overflows when concatenating to destination. wine-git/include/msvcrt/string.h:112: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/msvcrt/wchar.h:348: [4] (format) swprintf: Potential format string problem. Make format string constant. wine-git/include/msvcrt/wchar.h:351: [4] (format) vfwprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/wchar.h:352: [4] (format) vswprintf: Potential format string problem. Make format string constant. wine-git/include/msvcrt/wchar.h:353: [4] (format) vwprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/msvcrt/wchar.h:355: [4] (buffer) wscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. If the scanf format is influenceable by an attacker, it's exploitable. wine-git/include/msvcrt/wchar.h:398: [4] (buffer) wcscat: Does not check for buffer overflows when concatenating to destination. wine-git/include/msvcrt/wchar.h:402: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/objbase.h:400: [4] (access) CoImpersonateClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/rpcdce.h:499: [4] (access) RpcImpersonateClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/rpcndr.h:109: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/include/shellapi.h:246: [4] (shell) ShellExecute: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/shellapi.h:246: [4] (shell) ShellExecute: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/sspi.h:637: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/sspi.h:757: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/sspi.h:789: [4] (access) ImpersonateSecurityContext: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/tchar.h:73: [4] (format) _ftprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:73: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:73: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:74: [4] (buffer) _ftscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:74: [4] (buffer) fscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:74: [4] (buffer) fscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:98: [4] (format) _sntprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/tchar.h:98: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/tchar.h:98: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/tchar.h:99: [4] (buffer) _stprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:99: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:99: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:99: [4] (buffer) swprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:100: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:100: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:101: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/tchar.h:108: [4] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. wine-git/include/tchar.h:108: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/include/tchar.h:108: [4] (buffer) _mbscat: Does not check for buffer overflows when concatenating to destination. wine-git/include/tchar.h:108: [4] (buffer) wcscat: Does not check for buffer overflows when concatenating to destination. wine-git/include/tchar.h:113: [4] (buffer) _tcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/tchar.h:113: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/include/tchar.h:113: [4] (buffer) _mbscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/tchar.h:113: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/tchar.h:154: [4] (shell) execl: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:155: [4] (shell) execle: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:156: [4] (shell) execlp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:158: [4] (shell) execv: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:160: [4] (shell) execvp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:176: [4] (tmpfile) mktemp: Temporary file race condition. wine-git/include/tchar.h:181: [4] (shell) popen: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:182: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:182: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:187: [4] (buffer) _tscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:187: [4] (buffer) scanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:187: [4] (buffer) scanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:187: [4] (buffer) wscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/include/tchar.h:202: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:202: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/tchar.h:211: [4] (format) _vftprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:211: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:211: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:211: [4] (format) vfwprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:212: [4] (format) _vsntprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/tchar.h:212: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/tchar.h:213: [4] (buffer) _vstprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:213: [4] (buffer) vsprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:213: [4] (buffer) vsprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:213: [4] (buffer) vswprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/include/tchar.h:214: [4] (format) _vtprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:214: [4] (format) vprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:214: [4] (format) vprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/tchar.h:214: [4] (format) vwprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/winbase.h:1811: [4] (access) ImpersonateLoggedOnUser: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/winbase.h:1812: [4] (access) ImpersonateNamedPipeClient: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/winbase.h:2044: [4] (access) SetThreadToken: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/include/winbase.h:2107: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/winbase.h:2199: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/include/winbase.h:2212: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/include/winbase.h:2221: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/include/winbase.h:2221: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/include/winbase.h:2224: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/winbase.h:2224: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/include/windowsx.h:1406: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/include/windowsx.h:1409: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/include/wine/debug.h:93: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/port.h:122: [4] (shell) popen: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/include/wine/port.h:134: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/wine/port.h:134: [4] (format) _snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/wine/port.h:138: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/include/wine/server.h:54: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server.h:55: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:487: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:799: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:820: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:835: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:873: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:903: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:919: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:948: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:964: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:995: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1011: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1031: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1049: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1071: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1138: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1230: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1316: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1446: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1671: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1698: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1946: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:1966: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:2148: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:2165: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:2717: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3192: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3207: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3273: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3290: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3738: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3821: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3905: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3940: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3956: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:3988: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:4006: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:4040: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:4072: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:4086: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:4167: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/server_protocol.h:4184: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/include/wine/test.h:80: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:81: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:82: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:83: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:266: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:282: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:318: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/test.h:328: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/include/wine/wined3d_gl.h:2248: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/libs/port/spawn.c:44: [4] (shell) execvp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/libs/port/spawn.c:59: [4] (shell) execvp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/libs/wine/config.c:52: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wine/config.c:53: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wine/config.c:63: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wine/config.c:75: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wine/config.c:115: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wine/config.c:152: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/libs/wine/config.c:221: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wine/config.c:223: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/libs/wine/config.c:443: [4] (shell) execv: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/libs/wine/config.c:449: [4] (shell) execv: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/libs/wine/config.c:503: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/libs/wine/debug.c:116: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wine/debug.c:221: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/libs/wine/debug.c:382: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wine/loader.c:215: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wine/string.c:408: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/libs/wine/string.c:414: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/libs/wpp/ppl.yy.c:3744: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/libs/wpp/ppy.tab.c:964: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wpp/ppy.tab.c:1867: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/libs/wpp/ppy.tab.c:2591: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/libs/wpp/preproc.c:393: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wpp/preproc.c:407: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wpp/preproc.c:409: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/libs/wpp/preproc.c:593: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wpp/preproc.c:633: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wpp/wpp.c:182: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/libs/wpp/wpp_private.h:220: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wpp/wpp_private.h:221: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/libs/wpp/wpp_private.h:222: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/loader/freebsd.c:43: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/loader/glibc.c:87: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/loader/glibc.c:135: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/loader/preloader.c:412: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/loader/preloader.c:424: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/clock/main.c:283: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/cmd/wcmdmain.c:125: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/control/control.c:38: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/expand/expand.c:46: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/expand/expand.c:63: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/expand/expand.c:117: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/icinfo/icinfo.c:57: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/msiexec/msiexec.c:89: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/net/net.c:35: [4] (format) vprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/net/net.c:148: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/notepad/dialog.c:72: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/dialog.c:77: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/notepad/dialog.c:78: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/notepad/dialog.c:300: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/dialog.c:338: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:74: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:202: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:249: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:254: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:259: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:319: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:323: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/notepad/main.c:601: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/progman/dialog.c:538: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/progman/dialog.c:606: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/progman/main.c:321: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/progman/main.c:474: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/progman/program.c:280: [4] (shell) WinExec: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/regedit/childwnd.c:123: [4] (buffer) _tcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/regedit/childwnd.c:126: [4] (buffer) _tcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/regedit/edit.c:61: [4] (format) _vsntprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/programs/regedit/edit.c:94: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/regedit/regedit.c:135: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/regedit/regedit.c:187: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/regedit/regedit.c:204: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/regedit/regedit.c:276: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/regedit/regproc.c:1109: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/regedit/regproc.c:1147: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/services/rpc.c:67: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/programs/services/rpc.c:98: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/programs/services/rpc.c:100: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/programs/services/rpc.c:152: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/programs/services/rpc.c:289: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/programs/taskmgr/perfdata.c:292: [4] (access) ImpersonateLoggedOnUser: If this call fails, the program could fail to drop heightened privileges. Make sure the return value is checked, and do not continue if a failure is reported. wine-git/programs/wineboot/wineboot.c:104: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/wineboot/wineboot.c:111: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/wineboot/wineboot.c:126: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/audio.c:119: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winecfg/audio.c:169: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winecfg/audio.c:179: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winecfg/audio.c:180: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/audio.c:265: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winecfg/audio.c:527: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winecfg/audio.c:591: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/audio.c:605: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/audio.c:640: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/drive.c:372: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/drivedetect.c:174: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/programs/winecfg/drivedetect.c:176: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/programs/winecfg/libraries.c:243: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/libraries.c:245: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winecfg/libraries.c:287: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winecfg/libraries.c:307: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/libraries.c:328: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/libraries.c:371: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winecfg/libraries.c:373: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winecfg/winecfg.c:681: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winecfg/winecfg.h:127: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/wineconsole/dialog.c:369: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/wineconsole/dialog.c:408: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/wineconsole/user.c:478: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/wineconsole/user.c:511: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/wineconsole/wineconsole.c:50: [4] (format) vprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/winedbg/break.c:266: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/dbg.tab.c:1289: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/winedbg/dbg.tab.c:2228: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winedbg/dbg.tab.c:2239: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winedbg/debug.yy.c:2681: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/debugger.h:434: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/winedbg/expr.c:790: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/expr.c:796: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/expr.c:799: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/expr.c:806: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/expr.c:813: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/gdbproxy.c:2153: [4] (shell) execlp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/winedbg/gdbproxy.c:2155: [4] (shell) execlp: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/winedbg/memory.c:662: [4] (format) snprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/programs/winedbg/source.c:66: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/source.c:72: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/source.c:120: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/source.c:149: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/source.c:151: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/source.c:215: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winedbg/source.c:340: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:227: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:233: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:252: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:259: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:444: [4] (buffer) sscanf: The scanf() family's %s operation, without a limit specification, permits buffer overflows. Specify a limit to %s, or use a different input function. wine-git/programs/winedbg/symbol.c:533: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:548: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/symbol.c:688: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/tgt_active.c:211: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/tgt_active.c:212: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/tgt_active.c:863: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winedbg/tgt_active.c:938: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winedbg/tgt_minidump.c:236: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/winedbg/winedbg.c:153: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/programs/winedbg/winedbg.c:324: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winefile/winefile.c:453: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:608: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winefile/winefile.c:612: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1363: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1385: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1424: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/winefile/winefile.c:1429: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1438: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/winefile/winefile.c:1441: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1496: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1501: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1506: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:1507: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/winefile/winefile.c:2049: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:2394: [4] (shell) ShellExecute: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/winefile/winefile.c:2814: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:2815: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:2915: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:2917: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:2919: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:2921: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:2934: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:2995: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:3362: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:3404: [4] (format) _stprintf: Potential format string problem. Make format string constant. wine-git/programs/winefile/winefile.c:3432: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:3435: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:3796: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:3924: [4] (shell) ShellExecute: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/programs/winefile/winefile.c:4125: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:4127: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:4481: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:4485: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:4852: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winefile/winefile.c:4853: [4] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. wine-git/programs/winefile/winefile.h:153: [4] (buffer) _stprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winefile/winefile.h:157: [4] (buffer) _stprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winefile/winefile.h:157: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winemenubuilder/winemenubuilder.c:745: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winemenubuilder/winemenubuilder.c:750: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winemenubuilder/winemenubuilder.c:755: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winepath/winepath.c:66: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/programs/winetest/main.c:179: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winetest/main.c:437: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winetest/main.c:500: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winetest/util.c:62: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/programs/winevdm/winevdm.c:211: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winevdm/winevdm.c:223: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winevdm/winevdm.c:229: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winevdm/winevdm.c:349: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/hlpfile.c:244: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/hlpfile.c:1233: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winhlp32/hlpfile.c:1307: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winhlp32/hlpfile.c:1559: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winhlp32/hlpfile.c:1582: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/programs/winhlp32/hlpfile.c:1900: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/hlpfile.c:1914: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/hlpfile.c:1922: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/hlpfile.c:1936: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/hlpfile.c:1967: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/hlpfile.c:1969: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/hlpfile.c:1971: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/macro.c:287: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/macro.c:291: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/macro.c:295: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/macro.c:391: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/macro.c:395: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/macro.c:399: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/macro.c:904: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/winhelp.c:141: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/winhelp.c:195: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/programs/winhlp32/winhelp.c:608: [4] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/winhlp32/winhelp.c:1715: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/programs/xcopy/xcopy.c:444: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:445: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:638: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:639: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:664: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:665: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:666: [4] (buffer) wcscpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. wine-git/programs/xcopy/xcopy.c:1004: [4] (format) vswprintf: Potential format string problem. Make format string constant. wine-git/server/change.c:329: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/change.c:331: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/change.c:623: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/server/change.c:641: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/server/completion.c:139: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/completion.c:141: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/completion.c:176: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/completion.c:198: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:70: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:175: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:177: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:177: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:178: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:178: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:179: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:179: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:180: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:180: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:181: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:453: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:459: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:1337: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:1405: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/console.c:1506: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/device.c:124: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/device.c:287: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/device.c:435: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/device.c:463: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/directory.c:208: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/directory.c:210: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/directory.c:451: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/directory.c:470: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:50: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:51: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:96: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:98: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:154: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:156: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:156: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:158: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:158: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:159: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:159: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:160: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:163: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:168: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:200: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:202: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/event.c:222: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:190: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1495: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1502: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1503: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1512: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1516: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1517: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1518: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1534: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1543: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1573: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1575: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1584: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1626: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1632: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/server/fd.c:1743: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1745: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1745: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1746: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1746: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1747: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1747: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1748: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1748: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1749: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1930: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1935: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1979: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:1981: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:2014: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:2028: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/fd.c:2044: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:62: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:67: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:119: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:133: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:144: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:149: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:203: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:206: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:214: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:230: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:243: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:258: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:259: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:285: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:287: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:287: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:288: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:288: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:289: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:289: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:290: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:290: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:291: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:476: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:478: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:480: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:486: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:488: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:490: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:500: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:502: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:504: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:510: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:512: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:514: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:627: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:629: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:711: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:715: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:732: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.c:734: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.h:57: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.h:75: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.h:108: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.h:113: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/file.h:124: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:45: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:140: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:209: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:224: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:230: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:234: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:235: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:241: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:247: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:250: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:251: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:251: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:252: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:257: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:265: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:273: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:273: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:274: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:344: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:362: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:398: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:406: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:406: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:406: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:428: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:445: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:485: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:488: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:494: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:503: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:514: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:517: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:520: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:522: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:527: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:529: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:538: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:547: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:585: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:590: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:631: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:633: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:635: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:637: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:654: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.c:656: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.h:38: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.h:40: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.h:43: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.h:46: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/handle.h:48: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:68: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:69: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:115: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:121: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:171: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:243: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:246: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:246: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:247: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:247: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:248: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:251: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:291: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:352: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:480: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:483: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:483: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:484: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:484: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:485: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:489: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:491: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mailslot.c:510: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:57: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:308: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:312: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:340: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:378: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:380: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:380: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:381: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:381: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:382: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:382: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:383: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:383: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:384: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:428: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:430: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mapping.c:450: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:52: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:54: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:164: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:166: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:166: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:167: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:167: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:168: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:168: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:169: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:169: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:170: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:173: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:178: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:225: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:227: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/mutex.c:247: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:111: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:112: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:221: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:269: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:272: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:272: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:273: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:273: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:274: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:274: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:275: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:464: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:724: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:727: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:792: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/named_pipe.c:975: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:372: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:384: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:386: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:386: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:387: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:387: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:388: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:388: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:389: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:389: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:390: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.c:492: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.h:87: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.h:136: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.h:138: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.h:142: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.h:158: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/object.h:207: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:64: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:448: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:450: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:450: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:451: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:451: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:452: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:452: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:453: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:453: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:454: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:501: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:504: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.c:1059: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/process.h:113: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:137: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:303: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:305: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:305: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:306: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:306: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:308: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:308: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:309: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:1004: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:1006: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:1556: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/server/registry.c:1643: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:1669: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:1681: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/registry.c:1690: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/request.c:153: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.c:166: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.c:180: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.c:192: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.c:709: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/server/request.h:40: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.h:42: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.h:43: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/request.h:44: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/security.h:72: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:50: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:51: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:155: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:158: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:158: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:159: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:159: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:160: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:160: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:161: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:164: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:169: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:200: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:202: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/semaphore.c:222: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/serial.c:163: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/serial.c:165: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/sock.c:779: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/sock.c:792: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:50: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:118: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:120: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:120: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:121: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:121: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:122: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:122: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:123: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:123: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:124: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:181: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/symlink.c:201: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:110: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:304: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:306: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:306: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:307: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:308: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:308: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:309: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:309: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:310: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:362: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:365: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:1000: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.c:1101: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/thread.h:105: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:57: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:212: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:214: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:214: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:215: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:215: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:216: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:216: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:217: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:217: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:218: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:244: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/timer.c:264: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:118: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:148: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:150: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:150: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:151: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:151: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:152: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:152: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:153: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:153: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:154: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:916: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:918: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:921: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:922: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:932: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:934: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:936: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:975: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:987: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:996: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:997: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:1019: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:1032: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:1047: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:1050: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/token.c:1134: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:70: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/server/trace.c:866: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1108: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1123: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1135: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1172: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1193: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1207: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1231: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1245: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1271: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1285: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1305: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1321: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1340: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1385: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1401: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1451: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1480: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1571: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1740: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1758: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1944: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:1965: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2093: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2108: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2513: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2895: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2908: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2953: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:2968: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3317: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3390: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3469: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3502: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3516: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3546: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3564: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3594: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3620: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3631: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3702: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/trace.c:3717: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/user.h:155: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/user.h:156: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/user.h:157: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:51: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:56: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:162: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:164: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:164: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:166: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:166: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:168: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:168: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:169: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:169: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:170: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:174: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:177: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:207: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:209: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:281: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:283: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:283: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:284: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:284: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:287: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:287: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:288: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:288: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:289: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:293: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:295: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:434: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:446: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:501: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:529: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:650: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/server/winstation.c:676: [4] (race) access: This usually indicates a security flaw. If an attacker can change anything along the path between the call to access() and the file's actual use (e.g., by moving files), the attacker can exploit the race condition. Set up the correct permissions (e.g., using setuid()) and try to open the file directly. wine-git/tools/fnt2bdf.c:123: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/fnt2bdf.c:598: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2bdf.c:605: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2bdf.c:620: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2bdf.c:627: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2bdf.c:644: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2bdf.c:650: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2bdf.c:658: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/fnt2fon.c:139: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/fnt2fon.c:140: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/make_ctests.c:53: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/make_ctests.c:63: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/makedep.c:48: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/makedep.c:90: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/makedep.c:144: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/tools/makedep.c:249: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/makedep.c:298: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/makedep.c:463: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/makedep.c:471: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/makedep.c:937: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/sfnt2fnt.c:171: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/sfnt2fnt.c:178: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/sfnt2fnt.c:622: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/sfnt2fnt.c:625: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/sfnt2fnt.c:681: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/sfnt2fnt.c:684: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/widl/header.c:327: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/parser.tab.c:1975: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/parser.tab.c:5715: [4] (format) sprintf: Potential format string problem. Make format string constant. wine-git/tools/widl/proxy.c:727: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/typegen.c:339: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.c:53: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.c:115: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.c:125: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.c:144: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.c:170: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/widl/utils.c:241: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/widl/utils.h:36: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:37: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:38: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:39: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:40: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:41: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:42: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/widl/utils.h:43: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winebuild/import.c:199: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/import.c:279: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/import.c:285: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/import.c:539: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/import.c:541: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/import.c:543: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/winebuild/import.c:562: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/import.c:569: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/import.c:570: [4] (shell) popen: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/winebuild/import.c:1154: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/main.c:144: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/main.c:212: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/main.c:218: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/main.c:224: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/main.c:514: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winebuild/spec16.c:184: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/spec16.c:217: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winebuild/spec16.c:294: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/spec16.c:423: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/spec16.c:458: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/spec16.c:484: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/spec16.c:590: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:111: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winebuild/utils.c:127: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winebuild/utils.c:144: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winebuild/utils.c:163: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winebuild/utils.c:173: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winebuild/utils.c:196: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winebuild/utils.c:249: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/utils.c:251: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winebuild/utils.c:306: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:308: [4] (shell) system: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/winebuild/utils.c:411: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:416: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:513: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winebuild/utils.c:530: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:533: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:575: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:578: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winebuild/utils.c:581: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winedump/debug.c:716: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winedump/debug.c:722: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winedump/dump.c:162: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winedump/dump.c:181: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/winedump/dump.c:190: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winedump/main.c:149: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/winedump/minidump.c:266: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winedump/misc.c:52: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winedump/misc.c:83: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winedump/ne.c:280: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/winedump/pe.c:385: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winedump/pe.c:415: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winedump/search.c:77: [4] (shell) popen: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/winedump/search.c:109: [4] (shell) popen: This causes a new program to execute and is difficult to use safely. try using a library call that implements the same functionality if available. wine-git/tools/winegcc/utils.c:45: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winegcc/utils.c:87: [4] (format) vsnprintf: If format strings can be influenced by an attacker, they can be exploited, and note that sprintf variations do not always \0-terminate. Use a constant for the format specification. wine-git/tools/winegcc/utils.c:198: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winegcc/utils.c:241: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/winegcc/utils.c:248: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/mcy.tab.c:856: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.c:40: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.c:86: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.c:96: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.c:106: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.c:128: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/wmc/utils.c:172: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/wmc/utils.h:36: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.h:37: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.h:38: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.h:39: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.h:40: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/utils.h:41: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/wmc.c:161: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/wmc/wmc.c:224: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/write.c:177: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wmc/write.c:502: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/genres.c:1852: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/wrc/genres.c:1854: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/wrc/genres.c:1856: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/wrc/parser.tab.c:1600: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.c:53: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.c:94: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.c:104: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.c:114: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.c:125: [4] (format) vfprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.c:148: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/wrc/utils.c:190: [4] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). wine-git/tools/wrc/utils.h:36: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.h:37: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.h:38: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.h:39: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.h:40: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/utils.h:41: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/wrc.c:220: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/wrc/wrc.c:222: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/wrc/wrc.c:224: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. wine-git/tools/wrc/wrc.c:273: [4] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). wine-git/tools/wrc/wrc.c:296: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/wrc.c:339: [4] (format) printf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/tools/wrc/wrc.c:395: [4] (format) fprintf: If format strings can be influenced by an attacker, they can be exploited. Use a constant for the format specification. wine-git/dlls/advapi32/security.c:1444: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/dlls/advapi32/service.c:590: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/advapi32/service.c:2259: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/advapi32/tests/security.c:853: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/dlls/advapi32/tests/security.c:1790: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/dlls/advapi32/tests/security.c:2055: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/dlls/advpack/tests/files.c:475: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/atl/atl_main.c:80: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/atl/atl_main.c:81: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/atl/atl_main.c:82: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/compcatcachedaemon.c:151: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:191: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:206: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:312: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:346: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:361: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:392: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:424: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:446: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/browseui/progressdlg.c:500: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:150: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:166: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:382: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:402: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:833: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:941: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/animate.c:950: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/comctl32/tests/rebar.c:431: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/credui/credui_main.c:620: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/credui/credui_main.c:673: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/collectionstore.c:104: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/collectionstore.c:219: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/collectionstore.c:298: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/collectionstore.c:368: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/collectionstore.c:415: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/collectionstore.c:467: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/context.c:196: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/context.c:234: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/context.c:258: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/context.c:284: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/context.c:294: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:120: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:138: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:251: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:398: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:1460: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:1488: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:1506: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:1525: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/oid.c:1543: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/proplist.c:49: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/proplist.c:80: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/proplist.c:114: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/proplist.c:153: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/proplist.c:175: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/proplist.c:210: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/regstore.c:271: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/regstore.c:373: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/regstore.c:528: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/sip.c:525: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/crypt32/sip.c:535: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:86: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:97: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:108: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:119: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:130: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:150: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:162: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:173: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:209: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:222: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:237: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:248: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/cubetexture.c:259: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/d3d8_main.c:51: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:103: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:126: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:137: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:148: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:165: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:195: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:218: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:229: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:245: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:255: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:265: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:309: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:362: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:388: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:401: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:416: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:427: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:437: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:461: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:501: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:542: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:580: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:615: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:681: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:692: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:705: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:740: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:780: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:798: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:813: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:829: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:854: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:873: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:884: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:896: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:908: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:920: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:932: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:944: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:956: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:968: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:980: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:992: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1004: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1015: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1026: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1037: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1048: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1059: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1070: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1081: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1098: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1127: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1152: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1180: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1200: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1211: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1228: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1247: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1291: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1297: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1340: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1346: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1357: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1374: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1385: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1396: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1407: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1418: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1430: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1441: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1455: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1467: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1504: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1557: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1655: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1685: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1711: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1740: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1751: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1764: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1802: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1820: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1845: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1876: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1911: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1935: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1956: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1985: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:1996: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:2009: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:2027: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:2038: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:2049: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:2060: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/device.c:2079: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:87: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:98: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:111: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:136: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:147: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:158: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:171: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:185: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:199: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:213: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:234: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:257: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/directx.c:421: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:59: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:74: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:85: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:96: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:107: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:118: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:129: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:139: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:149: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:161: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:172: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/indexbuffer.c:183: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:79: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:96: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:107: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:118: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:129: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:167: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:179: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/surface.c:206: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/swapchain.c:59: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/swapchain.c:74: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/swapchain.c:87: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:74: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:85: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:96: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:107: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:118: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:129: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:139: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:149: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:161: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:172: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:183: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:208: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:220: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:235: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:246: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/texture.c:257: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:76: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:87: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:98: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:109: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:120: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:131: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:141: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:151: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:163: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:174: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/vertexbuffer.c:185: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:90: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:103: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:114: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:125: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:167: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:178: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volume.c:189: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:86: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:97: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:108: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:119: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:130: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:150: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:162: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:173: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:209: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:222: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:237: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:248: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d8/volumetexture.c:259: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:64: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:80: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:91: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:102: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:113: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:124: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:135: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:145: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:155: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:167: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:178: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:189: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:200: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:211: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:221: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:246: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:259: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:274: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:285: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:296: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/cubetexture.c:356: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/d3d9_main.c:50: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:89: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:112: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:128: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:139: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:156: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:186: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:206: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:234: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:244: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:254: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:380: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:413: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:426: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:440: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:451: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:462: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:472: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:534: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:547: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:561: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:572: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:593: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:605: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:618: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:650: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:670: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:683: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:700: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:722: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:738: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:760: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:771: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:783: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:795: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:815: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:827: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:839: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:851: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:863: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:875: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:887: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:898: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:909: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:920: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:931: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:942: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:953: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:964: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:975: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:992: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1011: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1023: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1034: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1045: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1056: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1067: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1078: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1089: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1100: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1111: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1122: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1133: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1144: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1155: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1166: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1177: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1188: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1201: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1213: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1226: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1239: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1307: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1335: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1346: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1365: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1386: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1397: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1408: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1426: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1444: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1455: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/device.c:1466: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:72: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:87: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:98: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:123: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:139: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:154: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:173: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:187: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:201: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:215: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:227: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:306: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:326: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/directx.c:492: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:86: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:97: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:108: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:119: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:130: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:150: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:162: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:173: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/indexbuffer.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:59: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:89: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:130: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:154: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:171: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:190: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:207: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:218: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:229: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/pixelshader.c:240: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:77: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:94: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:105: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:116: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:127: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:157: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/query.c:172: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:60: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:86: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:97: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:136: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:157: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/stateblock.c:174: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:81: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:98: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:109: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:120: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:131: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:142: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:153: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:163: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:174: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:218: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:229: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:241: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:252: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/surface.c:263: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:65: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:86: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:99: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:115: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:126: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:139: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:156: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:231: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:270: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/swapchain.c:287: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:62: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:77: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:88: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:99: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:110: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:121: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:132: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:142: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:152: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:164: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:175: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:186: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:197: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:208: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:218: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:243: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:255: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:270: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:281: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:292: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/texture.c:348: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:61: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:76: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:93: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:104: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:115: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:126: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:136: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:147: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:159: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:170: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:181: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexbuffer.c:227: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexdeclaration.c:220: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexdeclaration.c:252: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexdeclaration.c:362: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexdeclaration.c:390: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexdeclaration.c:408: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:59: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:75: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:92: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:127: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:152: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:166: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:195: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:206: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:228: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/d3d9/vertexshader.c:239: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dbghelp/elf_module.c:1376: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/dbghelp/elf_module.c:1378: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/dbghelp/elf_module.c:1499: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/ddraw/clipper.c:109: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/clipper.c:140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/clipper.c:178: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/clipper.c:207: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/clipper.c:233: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/clipper.c:261: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:99: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:269: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:364: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:549: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:708: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:816: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:971: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:1010: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:1134: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:1175: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:1249: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:1340: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:2429: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:2991: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:3375: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/ddraw.c:3457: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:322: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:628: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:832: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:869: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:927: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1006: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1204: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1341: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1422: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1468: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1539: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1585: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1628: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1699: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1858: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1923: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:1977: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2079: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2142: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2269: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2401: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2514: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2551: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2664: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2815: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:2996: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:3136: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:3241: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:3336: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:3427: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:3554: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:3721: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4051: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4229: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4371: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4537: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4787: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4876: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:4918: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5004: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5149: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5299: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5371: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5437: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5493: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5548: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5600: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5654: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5709: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5762: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5818: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5883: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5931: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:5995: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6058: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6141: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6381: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6588: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6646: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6704: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/device.c:6760: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/direct3d.c:260: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/direct3d.c:316: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/direct3d.c:777: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/direct3d.c:1052: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/direct3d.c:1190: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/direct3d.c:1308: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/gamma.c:144: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/gamma.c:190: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/light.c:204: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/light.c:236: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/main.c:319: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/main.c:346: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/main.c:479: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/main.c:506: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/main.c:729: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/material.c:152: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/material.c:251: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/material.c:285: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/material.c:318: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/palette.c:108: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/palette.c:168: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/palette.c:206: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/palette.c:243: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:291: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:476: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:587: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:676: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:722: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:795: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:899: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:976: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1072: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1100: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1153: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1185: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1219: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1262: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1292: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1391: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1470: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1505: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1574: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1604: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1637: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1676: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1728: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1771: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1806: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1842: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1902: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1969: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:1997: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2024: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2068: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2139: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2182: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2281: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2375: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2461: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface.c:2559: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/surface_thunks.c:319: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/texture.c:220: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/texture.c:311: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/vertexbuffer.c:168: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/vertexbuffer.c:244: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/vertexbuffer.c:299: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/vertexbuffer.c:369: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/vertexbuffer.c:461: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/vertexbuffer.c:517: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:258: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:303: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:387: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:524: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:578: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:678: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:739: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:794: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:868: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:912: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ddraw/viewport.c:1008: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:615: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:637: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:664: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:705: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:723: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:748: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:963: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:979: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/device.c:1101: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:140: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:146: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:329: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:494: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:530: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:887: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:892: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:918: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:924: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:969: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:976: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:1030: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/dinput_main.c:1074: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/joystick_linux.c:443: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/joystick_linuxinput.c:439: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/keyboard.c:105: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/keyboard.c:210: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/keyboard.c:300: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/mouse.c:196: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/mouse.c:298: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dinput/mouse.c:520: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dmime/performance.c:85: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dmime/performance.c:335: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dmime/performance.c:435: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dmime/performance.c:1031: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dnsapi/query.c:65: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplay.c:245: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplaysp.c:145: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplayx_messages.c:174: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplayx_messages.c:439: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:156: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:948: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:985: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:1008: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:1229: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:1386: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/dplobby.c:1420: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dplayx/lobbysp.c:121: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:427: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:930: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:1004: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:1068: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:1122: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:1218: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/capture.c:1629: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/dsound.c:1223: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/mixer.c:789: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/mixer.c:804: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/mixer.c:1038: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:294: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:329: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:396: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:457: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:600: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:674: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:693: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:736: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/primary.c:925: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/dsound/tests/capture.c:682: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/ds3d.c:1273: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/ds3d8.c:1133: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/dsound.c:1050: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/dsound.c:1058: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/dsound8.c:898: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/duplex.c:231: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/dsound/tests/propset.c:714: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/gdi32/driver.c:281: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/driver.c:333: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/driver.c:352: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:1838: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:1858: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:2055: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:2087: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:3254: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:3660: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:3845: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:3896: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:3939: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:4329: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5011: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5055: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5379: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5407: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5437: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5480: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5521: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5621: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5716: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/gdi32/freetype.c:5885: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/itss/chm_lib.c:73: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/itss/chm_lib.c:716: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/itss/chm_lib.c:718: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/itss/chm_lib.c:720: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/kernel32/console.c:1195: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/process.c:1047: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/process.c:1209: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/process.c:1210: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/process.c:1211: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/process.c:1212: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/process.c:1573: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/kernel32/sync.c:351: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/kernel32/tests/file.c:145: [3] (random) srand: This function is not sufficiently random for security-related functions such as key and nonce creation. use a more secure technique for acquiring random values. wine-git/dlls/kernel32/tests/file.c:498: [3] (random) srand: This function is not sufficiently random for security-related functions such as key and nonce creation. use a more secure technique for acquiring random values. wine-git/dlls/kernel32/tests/loader.c:253: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/dlls/kernel32/tests/loader.c:325: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/kernel32/tests/loader.c:435: [3] (misc) LoadLibraryEx: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/kernel32/tests/loader.c:453: [3] (misc) LoadLibraryEx: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/kernel32/tests/thread.c:88: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/dlls/kernel32/tests/thread.c:88: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/dlls/kernel32/tests/virtual.c:48: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/dlls/kernel32/tests/virtual.c:48: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/dlls/localspl/localmon.c:433: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/localspl/localmon.c:536: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/localspl/localmon.c:563: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/localspl/localmon.c:748: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mapi32/prop.c:1464: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mapi32/prop.c:2546: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/info.c:84: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/info.c:163: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/info.c:197: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/info.c:332: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:86: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:116: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:227: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:311: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:408: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:429: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:511: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:525: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:539: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:545: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:559: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:593: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:612: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:621: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:628: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:635: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:664: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:690: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:720: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mciavi.c:855: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/mmoutput.c:504: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/wnd.c:59: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/wnd.c:158: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/wnd.c:210: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mciavi32/wnd.c:276: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/handle.c:69: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/handle.c:89: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/handle.c:136: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/handle.c:152: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/handle.c:217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/handle.c:233: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mscms/tests/profile.c:1486: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/dlls/mshtml/dispex.c:271: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/mshtml/nsembed.c:508: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/custom.c:523: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/custom.c:574: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/custom.c:802: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/custom.c:836: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/custom.c:1214: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/custom.c:1393: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:112: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:136: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:159: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:232: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:278: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:330: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/handle.c:337: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/msi_main.c:97: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msi/tests/package.c:817: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/dlls/msi/tests/record.c:34: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/dlls/msvcrt/file.c:111: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msvcrt/file.c:330: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msvcrt/lock.c:44: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msvcrt/lock.c:127: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/msvcrt/tests/environ.c:49: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/msvcrt/tests/environ.c:56: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/msvcrt/tests/file.c:773: [3] (tmpfile) tmpnam: Temporary file race condition. wine-git/dlls/msvcrt/tests/file.c:779: [3] (tmpfile) tmpnam: Temporary file race condition. wine-git/dlls/msvcrt/tests/time.c:147: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/msvcrt/tests/time.c:147: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/msvcrt/tests/time.c:172: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/msvcrt/tests/time.c:172: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/msxml3/dispex.c:282: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbcmdqueue.c:64: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbcmdqueue.c:83: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbcmdqueue.c:119: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbcmdqueue.c:151: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbcmdqueue.c:177: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbnamecache.c:106: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbnamecache.c:122: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbnamecache.c:166: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbnamecache.c:188: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbt.c:1052: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/nbt.c:1146: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:106: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:114: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:190: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:214: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:236: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:262: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:306: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:468: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:510: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:552: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/netbios.c:637: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/netapi32/tests/ds.c:79: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/ntdll/loadorder.c:231: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/ntdll/server.c:720: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/ntdll/server.c:942: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/ntdll/tests/exception.c:648: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/dlls/ntdll/tests/exception.c:648: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/dlls/ntdll/virtual.c:1185: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/odbc32/proxyodbc.c:515: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/ole32/compobj.c:263: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:297: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:314: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:353: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:444: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:468: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:491: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:631: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:775: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:828: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:898: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:939: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:959: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:975: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:1660: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:1739: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:1785: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:1917: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:1973: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:2019: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:2939: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:3040: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/compobj.c:3071: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/git.c:204: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/git.c:232: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/git.c:269: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:176: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:211: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:257: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:294: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:319: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:339: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:628: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/ifs.c:662: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:732: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:757: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:923: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:942: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:965: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:1003: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:1059: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/marshal.c:1100: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:578: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:599: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:641: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:713: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:791: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:859: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/moniker.c:981: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:177: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:220: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:261: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:295: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:339: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:381: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:418: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:430: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:1503: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/rpc.c:1555: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:305: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:563: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:663: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:708: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:751: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:784: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:817: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:837: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stg_prop.c:1969: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:62: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:99: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:169: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:195: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:222: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:237: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:260: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:281: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:305: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:326: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:348: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:486: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:524: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ole32/stubmanager.c:764: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/olefont.c:418: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/olefont.c:831: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/olefont.c:909: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/olefont.c:1034: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/olefont.c:1068: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/tmarshal.c:462: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/tmarshal.c:490: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/tmarshal.c:1354: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/tmarshal.c:1809: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/typelib.c:2469: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/typelib.c:2518: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/typelib.c:3823: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/oleaut32/variant.c:1479: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:265: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:369: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:394: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:409: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:460: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:489: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:517: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:536: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:579: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:611: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:653: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:697: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:723: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:756: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:948: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/pdh/pdh_main.c:971: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/capturegraph.c:107: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/pin.c:64: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/pin.c:87: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/pin.c:268: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/pin.c:341: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/pin.c:368: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/pin.c:398: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/v4l.c:589: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/v4l.c:648: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/v4l.c:713: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/v4l.c:728: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/v4l.c:792: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qcap/vfwcapture.c:114: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/enum_files.c:189: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/enum_jobs.c:185: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/file.c:121: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/file.c:200: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/file.c:312: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/file.c:401: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/file.c:439: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/job.c:112: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/job.c:142: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/job.c:176: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/job.c:243: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/job.c:577: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/job.c:620: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/qmgr.c:84: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/qmgr.c:165: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/qmgr/qmgr.h:128: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/acmwrapper.c:69: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/acmwrapper.c:209: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/avidec.c:82: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/avisplit.c:1273: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/avisplit.c:1278: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:264: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:421: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:458: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:472: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:486: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:500: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:514: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:529: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:579: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:616: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:630: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:652: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/control.c:668: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:121: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:248: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:293: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:374: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:534: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:565: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:601: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:634: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:649: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:668: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:739: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:788: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:890: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:932: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/dsoundrender.c:965: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:360: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:939: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:1084: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:1155: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:1170: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:1365: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filesource.c:1381: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:80: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:96: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:128: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:1192: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:1905: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:1928: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:1951: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:1977: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2178: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2197: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2317: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2336: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2356: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2412: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2726: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2748: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2772: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2799: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2820: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2840: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2860: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2880: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2943: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2965: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:2989: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3016: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3037: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3057: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3077: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3097: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3117: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3137: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3157: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3177: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3197: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3237: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3257: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3277: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3297: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3317: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3337: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3357: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3377: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3397: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3417: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3437: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3460: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3483: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3502: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3525: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3548: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3567: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3588: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3611: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3632: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3651: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3670: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3689: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3782: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3804: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3828: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3855: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3877: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3897: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3917: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3937: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3957: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3977: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:3997: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4017: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4037: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4057: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4077: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4097: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4117: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4137: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4157: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4177: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4197: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4237: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4257: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4277: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4297: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4317: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4337: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4357: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4377: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4397: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4417: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4437: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4457: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4477: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4500: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4523: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4546: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4567: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4588: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4611: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4631: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:4651: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:5020: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:5070: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:5124: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:5221: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/filtergraph.c:5423: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:151: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:200: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:244: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:290: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:304: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:311: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:350: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/memallocator.c:872: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/mpegsplit.c:678: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/mpegsplit.c:682: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:90: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:178: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:362: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:377: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:394: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:411: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:426: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:445: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/nullrenderer.c:516: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:64: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:226: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:229: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:262: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:263: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:276: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:298: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:299: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:325: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:345: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:346: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:366: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:367: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:387: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:458: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:671: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:717: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:718: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:727: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:733: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/parser.c:759: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:380: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:405: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:431: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:589: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:633: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:656: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:679: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:918: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1002: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1089: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1120: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1157: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1175: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1204: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1233: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1296: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1340: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1518: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1568: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1578: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1628: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1694: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1749: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1755: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1769: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1785: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1789: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/pin.c:1811: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/systemclock.c:105: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/systemclock.c:247: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/systemclock.c:282: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/systemclock.c:318: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/systemclock.c:337: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/systemclock.c:384: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:581: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:617: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:638: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:662: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:799: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:1078: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:1235: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/tests/filtergraph.c:1299: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:163: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:327: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:345: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:367: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:395: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:410: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:429: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/transform.c:497: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:365: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:430: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:601: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:821: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:838: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:861: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:891: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:906: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:925: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:996: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:1061: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:1079: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/videorenderer.c:1546: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/waveparser.c:213: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/quartz/waveparser.c:217: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/riched20/tests/editor.c:5378: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/riched20/tests/editor.c:5428: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/riched20/tests/richole.c:66: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/riched20/txtsrv.c:79: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/riched32/tests/editor.c:832: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/riched32/tests/editor.c:852: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/rpcrt4/cstub.c:216: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/cstub.c:244: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/cstub.c:255: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/ndr_contexthandle.c:85: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/ndr_contexthandle.c:107: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/ndr_contexthandle.c:130: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/ndr_contexthandle.c:209: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:76: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:94: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:134: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:180: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:357: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:419: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:442: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:461: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:495: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_assoc.c:540: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:130: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:462: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:495: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:521: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:532: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:551: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:603: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:607: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:623: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:699: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:717: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:861: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:886: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_server.c:1042: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:271: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:317: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:577: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:649: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:949: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:1281: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpc_transport.c:1355: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:124: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:365: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:879: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:882: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:897: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:975: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rpcrt4/rpcrt4_main.c:979: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:60: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:106: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:141: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:268: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:317: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:360: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/rsaenh/handle.c:396: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/secur32/secur32.c:396: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/secur32/secur32.c:445: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/secur32/secur32.c:555: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/secur32/secur32.c:674: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/secur32/secur32.c:732: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/setupapi/tests/devinst.c:109: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/dlls/setupapi/tests/misc.c:81: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/dlls/shell32/changenotify.c:174: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/changenotify.c:222: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/changenotify.c:240: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/changenotify.c:349: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/iconcache.c:272: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/iconcache.c:362: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/iconcache.c:450: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/shellpath.c:2152: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/shell32/shfldr_unixfs.c:400: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/shlfileop.c:1722: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/shlfileop.c:1757: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/shlfileop.c:1761: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shelllink.c:506: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shelllink.c:555: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shelllink.c:555: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shelllink.c:560: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shelllink.c:582: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shelllink.c:583: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/dlls/shell32/tests/shellpath.c:522: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/shell32/trash.c:127: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/xdg.c:114: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/shell32/xdg.c:127: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/shell32/xdg.c:171: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/shell32/xdg.c:753: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/shell32/xdg.c:901: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/shlwapi/ordinal.c:4441: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/dlls/spoolss/spoolss_main.c:83: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/spoolss/spoolss_main.c:115: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/binding.c:132: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/binding.c:148: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/binding.c:275: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/binding.c:289: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/binding.c:1582: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/session.c:127: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/session.c:141: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/session.c:205: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/session.c:245: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/session.c:335: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/urlmon/session.c:352: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/cursoricon.c:355: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/cursoricon.c:389: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/cursoricon.c:419: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/cursoricon.c:433: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/cursoricon.c:456: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/dde_misc.c:408: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/dde_misc.c:511: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/dde_misc.c:703: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/dde_misc.c:711: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/dde_misc.c:758: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/message.c:1344: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/message.c:1387: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/winproc.c:144: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/winproc.c:223: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/user32/winproc.c:652: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/alsa.c:86: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/alsa.c:131: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/alsa.c:198: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/alsa.c:226: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:137: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:226: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:530: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:606: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:696: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:762: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:790: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dscapture.c:962: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:293: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:349: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:488: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:529: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:587: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:603: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/dsoutput.c:775: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/midi.c:382: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/midi.c:580: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/midi.c:650: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/mixer.c:574: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/mixer.c:587: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/mixer.c:632: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/mixer.c:770: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winealsa.drv/waveinit.c:585: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/winealsa.drv/waveout.c:341: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineaudioio.drv/audio.c:532: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineaudioio.drv/audio.c:554: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineaudioio.drv/audio.c:903: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winecoreaudio.drv/audio.c:651: [3] (random) random: This function is not sufficiently random for security-related functions such as key and nonce creation. use a more secure technique for acquiring random values. wine-git/dlls/winecoreaudio.drv/midi.c:128: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winecoreaudio.drv/midi.c:691: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winecoreaudio.drv/midi.c:809: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winecoreaudio.drv/midi.c:890: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wined3d/directx.c:206: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wined3d/directx.c:239: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/dosvm.c:151: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/dosvm.c:174: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/dosvm.c:205: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/dosvm.c:268: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/dosvm.c:603: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:315: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:629: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:827: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:839: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:905: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:921: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:947: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winedos/vga.c:1063: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineesd.drv/audio.c:547: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineesd.drv/audio.c:580: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineesd.drv/audio.c:649: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineesd.drv/audio.c:969: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:482: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:505: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:777: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:786: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:820: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:829: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1041: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1081: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1128: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1166: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1305: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1306: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1358: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1443: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1473: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1495: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1516: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1545: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1569: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1612: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:1798: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:2099: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:2100: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:2153: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winejack.drv/audio.c:2227: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winenas.drv/audio.c:466: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winenas.drv/audio.c:493: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winenas.drv/audio.c:562: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winenas.drv/audio.c:740: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/audio.c:1157: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/wineoss.drv/audio.c:1161: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/wineoss.drv/audio.c:1276: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/audio.c:1308: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/audio.c:1375: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/audio.c:1403: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/audio.c:1722: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/midi.c:458: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/wineoss.drv/midi.c:554: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/midi.c:850: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wineoss.drv/midi.c:920: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/dib.c:4361: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/dib.c:4400: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/dib.c:4514: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/dib.c:4702: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/dib.c:4711: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/dib.c:4727: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:770: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:826: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:990: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:1138: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:1249: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:1296: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/palette.c:1319: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/x11drv_main.c:273: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xdnd.c:310: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xdnd.c:483: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xdnd.c:525: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xfont.c:3219: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xrender.c:278: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xrender.c:523: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xrender.c:545: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xrender.c:565: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winex11.drv/xrender.c:1248: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winhttp/handle.c:62: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winhttp/handle.c:96: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winhttp/handle.c:128: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winhttp/handle.c:154: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winhttp/net.c:312: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wininet/internet.c:111: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wininet/internet.c:160: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wininet/internet.c:205: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wininet/internet.c:236: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wininet/internet.c:399: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/wininet/utility.c:192: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/driver.c:68: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/driver.c:89: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/driver.c:192: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/driver.c:242: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/driver.c:642: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:108: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:131: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:803: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:875: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:1776: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:1846: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mci.c:1864: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mmio.c:445: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mmio.c:466: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/mmio.c:486: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/playsound.c:211: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/playsound.c:456: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/playsound.c:470: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/time.c:140: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/time.c:178: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/time.c:184: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/time.c:323: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/time.c:365: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winmm/time.c:384: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:604: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/dlls/winspool.drv/info.c:774: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:799: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:832: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:988: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:1024: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:1081: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:1290: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:1445: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:2581: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:2668: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:3094: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:3302: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:3346: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:3444: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:5614: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:7562: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/info.c:7905: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/tests/info.c:2274: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/dlls/winspool.drv/wspool.c:81: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/winspool.drv/wspool.c:113: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:172: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:450: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:490: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:535: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:585: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:620: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:663: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:682: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:704: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:726: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:795: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:830: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:888: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:935: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:965: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/context.c:982: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wintab32/wintab32.c:77: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wnaspi32/winaspi32.c:101: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/wnaspi32/winaspi32.c:132: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/async.c:432: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/async.c:456: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/async.c:484: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/socket.c:3208: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/socket.c:3254: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/socket.c:3284: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/socket.c:3309: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/socket.c:3347: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/dlls/ws2_32/socket.c:3584: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/include/msvcrt/stdio.h:186: [3] (tmpfile) tmpnam: Temporary file race condition. wine-git/include/msvcrt/stdio.h:246: [3] (tmpfile) tempnam: Temporary file race condition. wine-git/include/msvcrt/stdlib.h:192: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/include/msvcrt/stdlib.h:199: [3] (random) srand: This function is not sufficiently random for security-related functions such as key and nonce creation. use a more secure technique for acquiring random values. wine-git/include/tchar.h:172: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/include/tchar.h:172: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/include/tchar.h:203: [3] (tmpfile) tempnam: Temporary file race condition. wine-git/include/tchar.h:204: [3] (tmpfile) tmpnam: Temporary file race condition. wine-git/include/tchar.h:204: [3] (tmpfile) tmpnam: Temporary file race condition. wine-git/include/winbase.h:1268: [3] (misc) AddAccessAllowedAce: This doesn't set the inheritance bits in the access control entry (ACE) header. Make sure that you set inheritance by hand if you wish it to inherit. wine-git/include/winbase.h:1379: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/include/winbase.h:1379: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/include/winbase.h:1382: [3] (shell) CreateProcessAsUser: This causes a new process to execute and is difficult to use safely. Especially watch out for embedded spaces. wine-git/include/winbase.h:1382: [3] (shell) CreateProcessAsUser: This causes a new process to execute and is difficult to use safely. Especially watch out for embedded spaces. wine-git/include/winbase.h:1440: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/include/winbase.h:1708: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/include/winbase.h:1708: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/include/winbase.h:1785: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/include/winbase.h:1818: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/include/winbase.h:1818: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/include/winbase.h:1821: [3] (misc) LoadLibraryEx: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/include/winbase.h:1821: [3] (misc) LoadLibraryEx: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/include/wine/port.h:277: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/include/wine/port.h:446: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/include/wine/port.h:446: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.c:224: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/port/getopt.c:225: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/port/getopt.c:410: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/port/getopt.c:1200: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.c:1230: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.h:145: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.h:147: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.h:151: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.h:165: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt.h:167: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt1.c:77: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt1.c:104: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/port/getopt1.c:137: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/libs/wine/config.c:178: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/wine/config.c:180: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/wine/config.c:197: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/wine/config.c:492: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/wine/debug.c:192: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/wine/loader.c:97: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/libs/wine/loader.c:707: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/loader/glibc.c:120: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/programs/cmd/builtins.c:844: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/programs/cmd/wcmdmain.c:122: [3] (random) srand: This function is not sufficiently random for security-related functions such as key and nonce creation. use a more secure technique for acquiring random values. wine-git/programs/cmd/wcmdmain.c:597: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/programs/hh/main.c:31: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/programs/oleview/oleview.c:376: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/programs/oleview/oleview.c:376: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/programs/regsvr32/regsvr32.c:89: [3] (misc) LoadLibraryEx: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/programs/rpcss/epmp.c:105: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/epmp.c:154: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/epmp.c:227: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:125: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:162: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:207: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:235: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:274: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:301: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:328: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/rpcss/irotp.c:365: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/services/services.c:371: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/services/services.c:469: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/services/services.c:474: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/services/services.c:484: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/services/services.c:489: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:63: [3] (misc) InitializeCriticalSection: Exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:168: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:355: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:376: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:392: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:415: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:431: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:447: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:461: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:477: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:493: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:509: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:525: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:541: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:557: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:573: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:589: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:605: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:621: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:637: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:653: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:669: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:689: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:706: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:723: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:742: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:763: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:780: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:797: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:814: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:831: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:848: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/perfdata.c:862: [3] (misc) EnterCriticalSection: On some versions of Windows, exceptions can be thrown in low-memory situations. Use InitializeCriticalSectionAndSpinCount instead. wine-git/programs/taskmgr/run.c:58: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/programs/wineboot/wineboot.c:831: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/programs/winecfg/drivedetect.c:250: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/programs/wineconsole/wineconsole.c:736: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/programs/wineconsole/wineconsole.c:736: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/programs/winedbg/dbg.tab.c:3410: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/programs/winedbg/gdbproxy.c:2130: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/programs/winedbg/source.c:139: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/programs/winedbg/source.c:146: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/programs/winedbg/source.c:146: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/programs/winedbg/source.c:150: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/programs/winedbg/source.c:151: [3] (buffer) realpath: This function does not protect against buffer overflows, and some implementations can overflow internally. Ensure that the destination buffer is at least of size MAXPATHLEN, andto protect against implementation problems, the input argument should also be checked to ensure it is no larger than MAXPATHLEN. wine-git/programs/winedbg/tgt_active.c:739: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/programs/winedbg/tgt_active.c:739: [3] (shell) CreateProcess: This causes a new process to execute and is difficult to use safely. Specify the application path in the first argument, NOT as part of the second, or embedded spaces could allow an attacker to force a different program to run. wine-git/programs/winedbg/tgt_active.c:936: [3] (tmpfile) GetTempFileName: Temporary file race condition in certain cases (e.g., if run as SYSTEM in many versions of Windows). wine-git/programs/winemine/main.c:555: [3] (random) srand: This function is not sufficiently random for security-related functions such as key and nonce creation. use a more secure technique for acquiring random values. wine-git/programs/winhlp32/macro.c:827: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/programs/winhlp32/winhelp.c:256: [3] (misc) LoadLibrary: Ensure that the full path to the library is specified, or current directory may be used. Use registry entry or GetWindowsDirectory to find library path, if you aren't already. wine-git/server/main.c:80: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/sfnt2fnt.c:536: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/widl/widl.c:352: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/widl/write_msft.c:2565: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/tools/winebuild/main.c:360: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/winegcc/winegcc.c:437: [3] (buffer) getenv: Environment variables are untrustable input if they can beit returns untrustable input if the environment can beset by an attacker. It can have any content and length, and the same variable can be set more than once. Check environment variables carefully before using them. wine-git/tools/wmc/wmc.c:118: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/wmc/wmc.c:166: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/wrc/wrc.c:173: [3] (buffer) getopt: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/tools/wrc/wrc.c:278: [3] (buffer) getopt_long: Some older implementations do not protect against internal buffer overflows . Check implementation on installation, or limit the size of all string inputs. wine-git/dlls/actxprxy/actxprxy_servprov_p.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/actxprxy/actxprxy_servprov_p.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/advapi.c:88: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/advapi.c:98: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/advapi.c:124: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/advapi.c:125: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/cred.c:312: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:321: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:332: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:335: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:348: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:357: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:368: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:371: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:406: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/cred.c:416: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/cred.c:430: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:439: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:464: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/cred.c:653: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/cred.c:902: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:904: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:969: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/cred.c:1007: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1008: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1010: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1011: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1021: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1030: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1041: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/cred.c:1054: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1063: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1088: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1095: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1181: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1188: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1357: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1364: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1454: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/cred.c:1456: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/crypt.c:157: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/crypt.c:164: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/crypt.c:2289: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/advapi32/crypt_arc4.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:27: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:39: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:53: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:63: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:73: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:125: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:133: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:258: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:259: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:286: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:296: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:297: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:298: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:325: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:326: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:336: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:337: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_des.c:338: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:82: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:196: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:212: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:223: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:252: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:255: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_lmhash.c:264: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:284: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:367: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:368: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:369: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:370: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:395: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:396: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:397: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_lmhash.c:398: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_md4.c:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_md4.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:111: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:123: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:133: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:181: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:295: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md4.c:323: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md5.c:44: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_md5.c:45: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/crypt_md5.c:104: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md5.c:108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md5.c:120: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md5.c:130: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/crypt_md5.c:178: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/lsa.c:106: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:464: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:500: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:507: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:528: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:655: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:688: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:841: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:1152: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:1191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1242: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:1310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1517: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1537: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1613: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1633: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1679: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:1720: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:1764: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/registry.c:1822: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:2470: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/registry.c:2548: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:464: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:867: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:890: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:1890: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:1892: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:1963: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:1965: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:2172: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:2174: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:3424: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:3426: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:3878: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:3987: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:3992: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:4068: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:4492: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:4496: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:4858: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:4860: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/security.c:4914: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/security.c:4922: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/service.c:212: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/service.c:214: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/service.c:226: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/service.c:233: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/service.c:444: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/service.c:649: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/service.c:652: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advapi32/service.c:1384: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/service.c:1514: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/svcctl_c.c:15: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/svcctl_c.c:21: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt.c:876: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:90: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:112: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:114: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:149: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:150: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:151: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:152: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:169: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:170: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:172: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:185: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:207: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:209: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:232: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:233: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:371: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:374: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:376: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:380: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:405: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:426: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:452: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:464: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/crypt_lmhash.c:474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_lmhash.c:486: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/crypt_lmhash.c:496: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md4.c:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md4.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md4.c:83: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md4.c:133: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md4.c:136: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md5.c:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md5.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/crypt_md5.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/registry.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/registry.c:61: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/registry.c:69: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/advapi32/tests/registry.c:119: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/advapi32/tests/registry.c:144: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/advapi32/tests/registry.c:177: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/registry.c:463: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/registry.c:492: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:493: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:506: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:507: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:524: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:525: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:540: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:541: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:554: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:555: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/registry.c:579: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:580: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:593: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:594: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:607: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:608: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:621: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/registry.c:622: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/security.c:540: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:693: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:709: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/security.c:1026: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1028: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1067: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1089: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1099: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1169: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1664: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1744: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1748: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:1970: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/advapi32/tests/security.c:2276: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:2277: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/security.c:2446: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advapi32/tests/service.c:711: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/service.c:725: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/advapi32/tests/service.c:779: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/advpack.c:546: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/advpack.c:548: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/advpack.c:550: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/advpack.c:552: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/advpack.c:554: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/advpack.c:556: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/files.c:48: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/files.c:50: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/install.c:637: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/reg.c:104: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/reg.c:105: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/reg.c:110: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/reg.c:111: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/advpack/tests/advpack.c:154: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:160: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:170: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:188: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:205: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/advpack.c:249: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/advpack.c:325: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/advpack.c:459: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/advpack.c:483: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/advpack.c:542: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/advpack.c:567: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:568: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:569: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:570: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:571: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:592: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:609: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:626: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/advpack.c:658: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/files.c:325: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/files.c:383: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/files.c:472: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/files.c:473: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/files.c:528: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:66: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:88: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:137: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/install.c:139: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/install.c:212: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:231: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/install.c:250: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/advpack/tests/install.c:257: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/install.c:267: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/advpack/tests/install.c:278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/amstream/amstream.c:270: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/atl/atl_ax.c:1214: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/atl/atl_ax.c:1218: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/atl/registrar.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/atl/registrar.c:445: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/atl/registrar.c:447: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/atl/registrar.c:485: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/atl/registrar.c:487: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/atl/registrar.c:553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/atl/registrar.c:557: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avicap32/avicap32_main.c:109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/avicap32/avicap32_main.c:129: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/avicap32/avicap32_main.c:199: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/avicap32/avicap32_main.c:203: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avicap32/avicap32_main.c:204: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/acmstream.c:250: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/acmstream.c:282: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/acmstream.c:342: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/acmstream.c:383: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:211: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/api.c:219: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/api.c:328: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:381: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/api.c:527: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:1163: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:1487: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:1507: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:1565: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/api.c:1573: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/api.c:2189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/api.c:2190: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/avifile.c:355: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:542: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:783: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:908: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:961: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:1105: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:1295: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:1346: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:1525: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/avifile.c:1804: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/avifil32/editstream.c:701: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/editstream.c:757: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/editstream.c:759: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/editstream.c:796: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/editstream.c:873: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/editstream.c:948: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/editstream.c:1047: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/extrachunk.c:49: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/extrachunk.c:96: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/getframe.c:443: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:332: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:412: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:416: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:482: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:510: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:655: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/icmstream.c:938: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/tmpfile.c:194: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/wavfile.c:339: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/wavfile.c:397: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/wavfile.c:723: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/wavfile.c:785: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/avifil32/wavfile.c:830: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/browseui/progressdlg.c:90: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/browseui/tests/autocomplete.c:49: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/browseui/tests/autocomplete.c:51: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/cabinet/cabinet.h:332: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/cabinet.h:333: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/cabinet.h:344: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/cabinet.h:346: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/cabinet.h:348: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/cabinet.h:350: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/cabinet.h:352: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/fci.c:237: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:238: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:360: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1125: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/fci.c:1127: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/fci.c:1477: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1492: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1528: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/fci.c:1571: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1573: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1588: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:1592: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:2052: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:2223: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fci.c:2225: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:881: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:882: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:914: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:1607: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:1932: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:1944: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cabinet/fdi.c:2056: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/fdi.c:2439: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/tests/extract.c:262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/tests/fdi.c:469: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cabinet/tests/fdi.c:610: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/capi2032/cap20wxx.c:185: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/capi2032/cap20wxx.c:198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comcat/information.c:758: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comcat/information.c:962: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/animate.c:781: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/animate.c:784: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comboex.c:322: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comboex.c:325: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comboex.c:700: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comboex.c:702: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comboex.c:705: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comboex.c:824: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comboex.c:826: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comboex.c:829: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:487: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comctl32undoc.c:573: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:578: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:630: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:634: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:741: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comctl32undoc.c:776: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comctl32undoc.c:777: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:779: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:844: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comctl32undoc.c:871: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/comctl32undoc.c:946: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:956: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:960: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:989: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/comctl32undoc.c:994: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/commctrl.c:156: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/commctrl.c:166: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/commctrl.c:586: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/commctrl.c:588: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/datetime.c:305: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/datetime.c:307: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/datetime.c:343: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/datetime.c:572: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/header.c:1219: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/header.c:1233: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/hotkey.c:158: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/hotkey.c:165: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/hotkey.c:172: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/imagelist.c:1663: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/imagelist.c:1665: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/imagelist.c:1906: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/listview.c:472: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/listview.c:484: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/listview.c:486: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/listview.c:567: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/listview.c:867: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/listview.c:880: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/listview.c:905: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/listview.c:5163: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/listview.c:5454: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/listview.c:5459: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/listview.c:6503: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/listview.c:6508: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:283: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/propsheet.c:285: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/propsheet.c:324: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:335: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/propsheet.c:338: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/propsheet.c:368: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:648: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:1447: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:2142: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/propsheet.c:2423: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:2426: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:2924: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:2932: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:2957: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/propsheet.c:3023: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/rebar.c:304: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comctl32/rebar.c:321: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comctl32/rebar.c:2593: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/rebar.c:2603: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/rebar.c:2612: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/status.c:769: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/status.c:772: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/string.c:60: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tab.c:2566: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tab.c:2572: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tab.c:2602: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tab.c:2708: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tab.c:2755: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tab.c:2806: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tab.c:2809: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tests/header.c:356: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/header.c:357: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/header.c:707: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/header.c:1381: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/header.c:1390: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comctl32/tests/imagelist.c:278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/imagelist.c:284: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comctl32/tests/imagelist.c:291: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comctl32/tests/imagelist.c:306: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comctl32/tests/imagelist.c:658: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tests/imagelist.c:815: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/imagelist.c:818: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comctl32/tests/imagelist.c:847: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/imagelist.c:881: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/imagelist.c:885: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comctl32/tests/misc.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/monthcal.c:647: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/mru.c:168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/mru.c:191: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/mru.c:225: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/mru.c:289: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/mru.c:404: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comctl32/tests/propsheet.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/propsheet.c:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/tab.c:442: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/tab.c:444: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comctl32/tests/tab.c:807: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/tab.c:829: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/toolbar.c:1115: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/tooltips.c:241: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/treeview.c:194: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/tests/treeview.c:395: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comctl32/toolbar.c:3241: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:3246: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:4333: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:4336: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:4338: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:4341: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:5228: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:6301: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:6308: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:6330: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:6339: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:6346: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:6370: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:6377: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:7110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/toolbar.c:7192: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/toolbar.c:7211: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tooltips.c:1050: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tooltips.c:1075: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:1079: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:1141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tooltips.c:1248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tooltips.c:1252: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tooltips.c:1984: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:1988: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:2021: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/tooltips.c:2079: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:2082: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:2264: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:2267: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/tooltips.c:2573: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/treeview.c:751: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:763: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:793: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:806: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:1123: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:1136: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:3774: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/treeview.c:3776: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comctl32/updown.c:336: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/updown.c:979: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comctl32/updown.c:998: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/colordlg.c:393: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/colordlg.c:414: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:665: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/colordlg.c:673: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:675: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:677: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:688: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/colordlg.c:694: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:696: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:698: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/colordlg.c:1367: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/colordlg.c:1369: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/colordlg16.c:314: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/filedlg.c:346: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:348: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:356: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:363: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:365: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:371: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:373: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:387: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:389: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:404: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:406: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:486: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/filedlg.c:934: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/filedlg.c:1696: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/filedlg.c:3146: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:3151: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg.c:3547: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg.c:3589: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg.c:3747: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg16.c:49: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg16.c:78: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg16.c:122: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg16.c:174: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg16.c:212: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/filedlg31.c:669: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg31.c:671: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg31.c:686: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlg31.c:695: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg31.c:725: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg31.c:729: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/filedlg31.c:911: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/filedlg31.c:912: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/filedlg31.h:46: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlg31.h:57: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/comdlg32/filedlgbrowser.c:164: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/filedlgbrowser.c:171: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/finddlg32.c:105: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/finddlg32.c:138: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/finddlg32.c:141: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg.c:642: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/fontdlg.c:1067: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/fontdlg.c:1070: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/fontdlg.c:1161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/fontdlg.c:1163: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/fontdlg.c:1164: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg.c:1168: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg.c:1170: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg16.c:61: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg16.c:81: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg16.c:83: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg16.c:88: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/fontdlg16.c:90: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/printdlg.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:202: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:820: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:821: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:1029: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:1055: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/printdlg.c:1060: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/printdlg.c:1371: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:1563: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:1574: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:1614: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2082: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2142: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:2192: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:2232: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2292: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:2350: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:2472: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg.c:2474: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/printdlg.c:2478: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/printdlg.c:2482: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/printdlg.c:2489: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2499: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/comdlg32/printdlg.c:2505: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2518: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg.c:2544: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2571: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:2706: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg.c:2881: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2908: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2909: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2930: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:2966: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:3343: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:3355: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:3528: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:3635: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg.c:3829: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg16.c:65: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg16.c:145: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg16.c:152: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg16.c:153: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg16.c:154: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg16.c:155: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg16.c:156: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg16.c:157: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/comdlg32/printdlg16.c:161: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/comdlg32/printdlg16.c:205: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg16.c:350: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/printdlg16.c:408: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/printdlg16.c:480: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/comdlg32/tests/filedlg.c:40: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/tests/filedlg.c:59: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/comdlg32/tests/filedlg.c:60: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/credui/credui_main.c:445: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/credui/credui_main.c:456: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/credui/credui_main.c:638: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/credui/credui_main.c:644: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/credui/credui_main.c:647: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/credui/credui_main.c:728: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/credui/credui_main.c:742: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/base64.c:63: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/base64.c:497: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:101: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:185: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:406: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1058: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1060: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1068: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1105: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1122: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:1715: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:2360: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/cert.c:2366: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/cert.c:2384: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/cert.c:2390: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/cert.c:2446: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:2495: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/cert.c:2523: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:545: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:546: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:547: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:808: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:810: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:821: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:860: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:862: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/chain.c:877: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/context.c:92: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/crl.c:63: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/crl.c:313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:686: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:803: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:1225: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/decode.c:1237: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/decode.c:1280: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/decode.c:1298: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/decode.c:1494: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/decode.c:1536: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:1557: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/decode.c:1668: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/decode.c:1723: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/decode.c:2010: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:2612: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:3176: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:3233: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:3341: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:3433: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:3727: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/decode.c:4136: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:339: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:862: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/encode.c:918: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:1183: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:1262: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:2310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:2313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:2780: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:2847: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:3105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/encode.c:3137: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:3163: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/encode.c:3187: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/encode.c:3263: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/filestore.c:376: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/filestore.c:383: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/message.c:79: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/message.c:244: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:314: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:541: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:714: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:1311: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:1520: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:1575: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/msg.c:1949: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/oid.c:162: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/oid.c:808: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/oid.c:842: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/oid.c:1421: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/proplist.c:105: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:119: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/protectdata.c:146: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:160: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:176: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:206: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:597: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:905: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:1073: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/protectdata.c:1101: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/rootstore.c:104: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/rootstore.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/rootstore.c:208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/rootstore.c:358: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/crypt32/serialize.c:119: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/serialize.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/serialize.c:591: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/serialize.c:598: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/serialize.c:605: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/serialize.c:783: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/sip.c:66: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/sip.c:68: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/sip.c:72: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/sip.c:262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/store.c:404: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/store.c:411: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/store.c:505: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/store.c:512: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/store.c:1206: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:56: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:171: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:227: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/str.c:265: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:272: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:332: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:429: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:436: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/str.c:466: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/str.c:473: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/crypt32/str.c:547: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/chain.c:1746: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/chain.c:1748: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/encode.c:471: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/encode.c:473: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/encode.c:480: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/encode.c:484: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/encode.c:2232: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/encode.c:2293: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/main.c:185: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/main.c:190: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/msg.c:520: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/oid.c:362: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/sip.c:41: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/sip.c:158: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/store.c:655: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/store.c:679: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/store.c:736: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/store.c:752: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/store.c:759: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/store.c:791: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/crypt32/tests/store.c:816: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/store.c:837: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/store.c:1736: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/store.c:1833: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/crypt32/tests/str.c:222: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/crypt32/tests/str.c:317: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cryptnet/cryptnet_main.c:96: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cryptnet/cryptnet_main.c:321: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/cryptnet/cryptnet_main.c:328: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/cryptnet/cryptnet_main.c:379: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cryptnet/cryptnet_main.c:436: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cryptnet/cryptnet_main.c:1023: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/cryptnet/tests/cryptnet.c:238: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cryptnet/tests/cryptnet.c:239: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cryptnet/tests/cryptnet.c:257: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/cryptnet/tests/cryptnet.c:257: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/cryptnet/tests/cryptnet.c:272: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/cryptnet/tests/cryptnet.c:273: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/cryptnet/tests/cryptnet.c:277: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/cryptnet/tests/cryptnet.c:371: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/cryptnet/tests/cryptnet.c:381: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/ctapi32/ctapi32.c:46: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ctapi32/ctapi32.c:69: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d8/device.c:1502: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d8/device.c:1789: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/device.c:1541: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/device.c:1551: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/stateblock.c:197: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:1747: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:2773: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:2779: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:3267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:5209: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:6418: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:6424: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7015: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7029: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7045: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7061: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7190: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7198: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:7383: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:8958: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:8963: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:8968: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/tests/visual.c:8973: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/vertexdeclaration.c:276: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/vertexdeclaration.c:313: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3d9/vertexdeclaration.c:359: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3dx8/d3dx8_main.c:86: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/d3dx8/d3dx8_main.c:88: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/d3dx9_36/font.c:246: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3dx9_36/font.c:247: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/d3dxof/d3dxof.c:206: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3dxof/d3dxof.c:370: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof.c:420: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof.c:449: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof.c:669: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof.c:689: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof.c:967: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof.c:968: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/d3dxof/d3dxof.c:1045: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/d3dxof/d3dxof_private.h:45: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof_private.h:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/d3dxof/d3dxof_private.h:54: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/d3dxof/d3dxof_private.h:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/coff.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/coff.c:91: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/dbghelp.c:164: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/dbghelp.c:167: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/dbghelp.c:216: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/dbghelp.c:356: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/dbghelp.c:358: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/dbghelp.c:488: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/dbghelp_private.h:315: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/dwarf.c:79: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dbghelp/dwarf.c:839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/dwarf.c:2261: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/elf_module.c:275: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dbghelp/elf_module.c:453: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/elf_module.c:849: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/elf_module.c:907: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:918: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:922: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/elf_module.c:923: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:928: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/elf_module.c:930: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:1291: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:1294: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:1334: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:1340: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:1397: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/elf_module.c:1420: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/elf_module.c:1502: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/minidump.c:348: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/minidump.c:461: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/minidump.c:707: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/module.c:85: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/module.c:206: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/module.c:310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/module.c:464: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/module.c:466: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/module.c:471: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/module.c:473: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/module.c:645: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/module.c:676: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/module.c:731: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/module.c:763: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/module.c:853: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/module.c:883: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/module.c:938: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/module.c:973: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/msc.c:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/msc.c:78: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dbghelp/msc.c:292: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/msc.c:294: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/msc.c:1088: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/msc.c:1137: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/msc.c:1210: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/msc.c:1778: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/msc.c:1796: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/msc.c:1950: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/msc.c:1971: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/msc.c:2348: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/msc.c:2525: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/path.c:134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/path.c:143: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/path.c:269: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/path.c:270: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/path.c:301: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/path.c:323: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/path.c:324: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/path.c:412: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/path.c:510: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/path.c:550: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/path.c:551: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/pe_module.c:96: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/pe_module.c:249: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/source.c:91: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/stabs.c:307: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/stabs.c:391: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/stabs.c:633: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/stabs.c:638: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dbghelp/stabs.c:1097: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/stabs.c:1183: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/stabs.c:1192: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/storage.c:173: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/symbol.c:624: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/symbol.c:641: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/symbol.c:877: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/symbol.c:989: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/symbol.c:1138: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/symbol.c:1166: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/symbol.c:1229: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/symbol.c:1231: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/symbol.c:1260: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/symbol.c:1389: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/symbol.c:1391: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/type.c:382: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/type.c:418: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dbghelp/type.c:430: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dbghelp/type.c:736: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dbghelp/type.c:739: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ddraw/ddraw_private.h:147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ddraw/ddraw_private.h:682: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/ddraw_thunks.c:618: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/device.c:759: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/device.c:2278: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/device.c:2283: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/device.c:4577: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/device.c:7121: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/direct3d.c:312: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ddraw/direct3d.c:313: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ddraw/direct3d.c:362: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ddraw/executebuffer.c:491: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/executebuffer.c:709: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/executebuffer.c:757: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/executebuffer.c:795: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/light.c:205: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/light.c:237: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/main.c:262: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ddraw/main.c:807: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ddraw/main.c:826: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ddraw/material.c:253: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/material.c:288: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/tests/d3d.c:1165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ddraw/tests/d3d.c:1556: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ddraw/tests/dsurface.c:2520: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ddraw/tests/visual.c:1138: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/tests/visual.c:1270: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/tests/visual.c:1391: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/tests/visual.c:1517: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/tests/visual.c:1655: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/texture.c:432: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/texture.c:434: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/utils.c:939: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/utils.c:1176: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/viewport.c:266: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/viewport.c:306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/viewport.c:876: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ddraw/viewport.c:915: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/devenum/mediacatenum.c:140: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/devenum/mediacatenum.c:193: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/devenum/parsedisplayname.c:118: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/device.c:222: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/device.c:242: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/device.c:277: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/device.c:301: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/device.c:370: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/device.c:549: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/device.c:1114: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/effect_linuxinput.c:912: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linux.c:85: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linux.c:147: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linux.c:150: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linux.c:156: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linux.c:179: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linux.c:194: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/joystick_linux.c:198: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:201: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:216: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linux.c:217: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linux.c:230: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linux.c:245: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/joystick_linux.c:246: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linux.c:250: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:253: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:255: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linux.c:271: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linux.c:384: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linux.c:399: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linux.c:410: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:413: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:456: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linux.c:467: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linux.c:478: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linux.c:641: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linux.c:881: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linux.c:1003: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linux.c:1040: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/joystick_linux.c:1075: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linux.c:1076: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linuxinput.c:227: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linuxinput.c:236: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linuxinput.c:237: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linuxinput.c:316: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linuxinput.c:363: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linuxinput.c:364: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/joystick_linuxinput.c:422: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/joystick_linuxinput.c:455: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linuxinput.c:466: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linuxinput.c:490: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linuxinput.c:500: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/joystick_linuxinput.c:627: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linuxinput.c:628: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/dinput/joystick_linuxinput.c:1057: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/keyboard.c:132: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/keyboard.c:133: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/keyboard.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/keyboard.c:156: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/keyboard.c:157: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/keyboard.c:159: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/keyboard.c:207: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/keyboard.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/keyboard.c:220: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/keyboard.c:225: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/keyboard.c:348: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/mouse.c:116: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/mouse.c:117: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dinput/mouse.c:119: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/mouse.c:140: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/mouse.c:141: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dinput/mouse.c:143: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/mouse.c:187: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/mouse.c:214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/mouse.c:216: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/mouse.c:653: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/mouse.c:696: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dinput/tests/joystick.c:185: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/tests/joystick.c:375: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/tests/keyboard.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dinput/tests/keyboard.c:49: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/tests/keyboard.c:55: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/tests/keyboard.c:57: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/tests/keyboard.c:61: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dinput/tests/keyboard.c:63: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmband/band.c:151: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmband/band.c:176: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmband/band.c:459: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmband/dmutils.c:65: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmband/dmutils.c:144: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmband/dmutils.c:146: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmband/dmutils.c:147: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmband/dmutils.c:158: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmband/dmutils.c:732: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmband/dmutils.c:734: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmband/dmutils.c:745: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmband/dmutils.c:747: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmcompos/chordmap.c:141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmcompos/chordmap.c:166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmcompos/dmcompos_main.c:695: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmcompos/dmcompos_main.c:735: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmcompos/dmcompos_main.c:737: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmcompos/dmcompos_main.c:738: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmcompos/dmcompos_main.c:742: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmcompos/dmcompos_main.c:749: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmime/audiopath.c:251: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/audiopath.c:275: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/audiopath.c:276: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/dmutils.c:619: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmime/dmutils.c:673: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmime/dmutils.c:675: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmime/dmutils.c:676: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmime/dmutils.c:687: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmime/dmutils.c:717: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmime/dmutils.c:719: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmime/dmutils.c:730: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmime/dmutils.c:732: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmime/graph.c:216: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/graph.c:240: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/graph.c:241: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/lyricstrack.c:282: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:625: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:627: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:629: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:640: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:644: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:648: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/performance.c:652: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/segment.c:536: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/segment.c:560: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmime/segment.c:561: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmloader/debug.c:435: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmloader/debug.c:489: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmloader/debug.c:491: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmloader/debug.c:492: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmloader/debug.c:503: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmloader/debug.c:513: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmloader/debug.c:515: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmloader/debug.c:526: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmloader/debug.c:528: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmloader/loader.c:863: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmloader/loader.c:871: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dmloader/loaderstream.c:390: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmscript/dmscript_main.c:979: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmscript/dmscript_main.c:1019: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmscript/dmscript_main.c:1021: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmscript/dmscript_main.c:1022: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmscript/dmscript_main.c:1026: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmscript/dmscript_main.c:1033: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmscript/script.c:220: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmscript/script.c:244: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmscript/script.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmstyle/dmutils.c:630: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmstyle/dmutils.c:684: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmstyle/dmutils.c:686: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmstyle/dmutils.c:687: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmstyle/dmutils.c:698: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmstyle/dmutils.c:728: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmstyle/dmutils.c:730: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmstyle/dmutils.c:741: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmstyle/dmutils.c:743: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmstyle/style.c:224: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmstyle/style.c:248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmstyle/style.c:249: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmsynth/dmsynth_main.c:527: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmsynth/synth.c:258: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dmusic/collection.c:149: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmusic/collection.c:188: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmusic/collection.c:212: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmusic/collection.c:213: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dmusic/collection.c:290: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dmusic/collection.c:502: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dmusic/dmusic.c:185: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmusic/dmusic.c:198: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dmusic/dmusic.c:247: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dmusic/dmusic_main.c:551: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmusic/dmusic_main.c:591: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dmusic/dmusic_main.c:593: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmusic/dmusic_main.c:594: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmusic/dmusic_main.c:598: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmusic/dmusic_main.c:605: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dmusic/port.c:201: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dnsapi/dnsapi.h:75: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dnsapi/dnsapi.h:77: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dnsapi/dnsapi.h:87: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dnsapi/dnsapi.h:89: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dnsapi/ns_name.c:317: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dnsapi/query.c:90: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dnsapi/query.c:92: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dnsapi/query.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dnsapi/query.c:196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dnsapi/query.c:326: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dnsapi/query.c:509: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dnsapi/query.c:541: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dnsapi/query.c:606: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dnsapi/query.c:775: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dnsapi/record.c:110: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dnsapi/record.c:110: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dnsapi/record.c:422: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:568: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:1182: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:1321: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:1386: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:2482: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:2542: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:2681: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:2746: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:3035: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:3407: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:3749: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplay.c:3773: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplay.c:3802: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplay.c:3845: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplay.c:3869: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplay.c:3899: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplay.c:4069: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:4098: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplay.c:4125: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplay.c:4148: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplay.c:4160: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplay.c:4162: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplay.c:4177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:4191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:4720: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplay.c:5469: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplaysp.c:233: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplaysp.c:770: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplaysp.c:895: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplayx_global.c:723: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplayx_global.c:845: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplayx_global.c:1077: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplayx_global.c:1213: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplayx_messages.c:450: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplobby.c:363: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplobby.c:728: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:767: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:768: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:795: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplobby.c:822: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplobby.c:884: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:917: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:940: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/dplobby.c:950: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplobby.c:1075: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:1209: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/dplobby.c:1599: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/dplobby.c:1653: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/lobbysp.c:197: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/name_server.c:132: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/name_server.c:207: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/name_server.c:390: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/name_server.c:413: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dplayx/name_server.c:418: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dplayx/tests/dplayx.c:69: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/tests/dplayx.c:78: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/tests/dplayx.c:126: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dplayx/tests/dplayx.c:211: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dplayx/tests/dplayx.c:271: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:273: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:282: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:284: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:286: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:288: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:290: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:292: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:294: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:296: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:301: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:303: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:305: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:307: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:309: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:311: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:313: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:315: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:323: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:325: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:327: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:329: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:337: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:339: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:341: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:349: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:351: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:353: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:355: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:357: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:359: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:368: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:377: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:379: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:387: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:389: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:391: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:393: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:404: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:409: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:411: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:413: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:415: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:417: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:419: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:421: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:423: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:425: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:438: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:440: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:442: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:450: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:452: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:460: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:468: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:470: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:472: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:480: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:482: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:484: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:486: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:488: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:490: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:492: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:494: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:496: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:498: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:500: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:503: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:505: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:507: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:516: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:518: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:526: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:535: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:537: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:539: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:541: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:543: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:545: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:547: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:549: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:551: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:553: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:555: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:557: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:560: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:564: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dplayx/tests/dplayx.c:621: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dplayx/tests/dplayx.c:634: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dplayx/tests/dplayx.c:1307: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:131: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:495: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:500: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:989: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:1006: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:1202: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/buffer.c:1242: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/capture.c:358: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/capture.c:360: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/capture.c:375: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/capture.c:377: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/capture.c:725: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/capture.c:969: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/capture.c:1379: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/capture.c:1410: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/dsound.c:116: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/dsound.c:125: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/dsound_main.c:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/dsound_main.c:141: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dsound/dsound_main.c:377: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/dsound_main.c:392: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/dsound_main.c:394: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/primary.c:471: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/primary.c:480: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/primary.c:793: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/propset.c:455: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:456: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:486: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:487: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:518: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:519: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:551: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:552: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:636: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dsound/propset.c:685: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dsound/propset.c:733: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dsound/propset.c:781: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/dsound/propset.c:875: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:876: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:877: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:924: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:925: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:926: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:972: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:973: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:974: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1020: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1021: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1022: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1091: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1092: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1118: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1119: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1291: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1292: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1337: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/propset.c:1338: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/dsound/tests/capture.c:39: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/capture.c:86: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/tests/capture.c:92: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/ds3d.c:121: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/ds3d.c:193: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/tests/ds3d.c:196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/tests/ds3d8.c:65: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/tests/ds3d8.c:68: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dsound/tests/dsound8.c:860: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/dsound8.c:873: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/tests/dsound8.c:879: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/tests/dsound8.c:881: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/tests/dsound8.c:885: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/tests/dsound8.c:887: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dsound/tests/propset.c:94: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/propset.c:95: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/propset.c:152: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/propset.c:153: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dsound/tests/propset.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dswave/dswave.c:340: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dswave/dswave.c:364: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dswave/dswave.c:365: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dswave/dswave_main.c:479: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dswave/dswave_main.c:519: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dswave/dswave_main.c:521: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dswave/dswave_main.c:522: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dswave/dswave_main.c:526: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dswave/dswave_main.c:533: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/dxdiagn/provider.c:95: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/dxerr8/dxerr8.c:123: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/dxerr9/dxerr9.c:127: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/faultrep/faultrep.c:91: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/faultrep/faultrep.c:99: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/fusion/asmname.c:199: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/fusion/assembly.c:584: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/fusion/assembly.c:591: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/fusion/assembly.c:828: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/fusion/assembly.c:852: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/fusion/tests/asmname.c:339: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/bidi.c:1087: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitblt.c:552: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:188: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:357: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:366: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:464: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:469: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:496: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:682: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:688: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/bitmap.c:694: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/brush.c:77: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/brush.c:436: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:422: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:460: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:694: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:759: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:761: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:772: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:774: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:791: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:793: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:876: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:953: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:1030: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dib.c:1232: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/dispdib.c:93: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/driver.c:229: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/driver.c:239: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/driver.c:434: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/driver.c:437: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/driver.c:442: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/driver.c:448: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/driver.c:452: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/driver.c:511: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/driver.c:520: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/driver.c:566: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/driver.c:574: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/driver.c:643: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:1731: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:1734: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:1893: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:2508: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:2548: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:2603: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmetafile.c:2765: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/bitblt.c:216: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/bitblt.c:219: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/bitblt.c:293: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/bitblt.c:294: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/graphics.c:380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/graphics.c:512: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/graphics.c:513: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/graphics.c:742: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/graphics.c:758: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/init.c:211: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/init.c:275: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/enhmfdrv/init.c:277: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/enhmfdrv/init.c:282: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/enhmfdrv/init.c:284: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/enhmfdrv/init.c:401: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/objects.c:189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/enhmfdrv/objects.c:541: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/env.c:61: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/env.c:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/env.c:108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/env.c:152: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:167: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:168: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:175: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:238: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:311: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:313: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:530: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:543: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:1240: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/font.c:1357: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:1467: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:2329: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/font.c:2390: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2392: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2397: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2399: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2404: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2406: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2731: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:2811: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/font.c:2985: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:2989: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:3077: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/font.c:3081: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:606: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/freetype.c:763: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/gdi32/freetype.c:894: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:903: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:971: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:973: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:1294: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:1296: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:1332: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:1334: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:1712: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/freetype.c:1834: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/freetype.c:1963: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:1966: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:2085: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:2317: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/freetype.c:2330: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/gdi32/freetype.c:2548: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/freetype.c:2700: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/gdi32/freetype.c:3282: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:3753: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:4555: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:5060: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:5073: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:5076: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/freetype.c:5234: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:5297: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:5891: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/freetype.c:6016: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/gdi16.c:118: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/gdi16.c:1295: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/gdi16.c:1312: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/gdi_main.c:46: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/metafile.c:347: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/metafile.c:850: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/metafile.c:1112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/metafile16.c:108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/bitblt.c:174: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/bitblt.c:175: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/bitblt.c:214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/bitblt.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/graphics.c:139: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/graphics.c:238: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/graphics.c:239: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/init.c:288: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/mfdrv/init.c:290: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/mfdrv/init.c:370: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/init.c:456: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/init.c:480: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/init.c:494: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/init.c:509: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/init.c:527: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/init.c:547: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/init.c:569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/init.c:604: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/objects.c:237: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/objects.c:318: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/objects.c:359: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/objects.c:416: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/objects.c:421: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/objects.c:490: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/objects.c:552: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/mfdrv/text.c:59: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/text.c:60: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/mfdrv/text.c:62: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/painting.c:637: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/painting.c:828: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/painting.c:947: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/painting.c:957: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/painting.c:1225: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/palette.c:124: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/palette.c:155: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/palette.c:301: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/palette.c:341: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/palette.c:432: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/palette.c:642: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:282: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:283: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:528: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:530: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:1583: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:1585: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/path.c:1800: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/pen.c:204: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/pen.c:288: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/printdrv.c:98: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv.c:100: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv.c:104: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv.c:106: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv.c:110: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv.c:112: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv16.c:305: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/printdrv16.c:380: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/printdrv16.c:383: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/gdi32/region.c:981: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/region.c:1433: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/bitmap.c:75: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:400: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:401: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:405: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:409: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:792: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:984: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:1164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/bitmap.c:1278: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/bitmap.c:1444: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/bitmap.c:1680: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/clipping.c:129: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/clipping.c:183: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/clipping.c:201: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/clipping.c:227: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/font.c:283: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:359: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:382: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:601: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:783: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:829: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:924: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:947: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:1170: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:1252: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:1307: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/font.c:1376: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:1420: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:1425: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdi32/tests/font.c:1433: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:2149: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:2174: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:2186: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:2202: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:2215: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:2297: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdi32/tests/font.c:2325: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/font.c:2332: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/font.c:2365: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/font.c:2406: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/icm.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:842: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:871: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:1041: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/metafile.c:1043: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/metafile.c:1087: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:1191: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:1192: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:1274: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/metafile.c:1286: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/metafile.c:1303: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/metafile.c:1556: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/metafile.c:1886: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/palette.c:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/palette.c:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/palette.c:59: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/palette.c:125: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/palette.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/path.c:136: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdi32/tests/pen.c:156: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdi32/tests/pen.c:247: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:47: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:62: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:75: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:76: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:93: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:94: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:102: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:254: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:334: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:336: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:471: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:561: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:563: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/brush.c:663: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/customlinecap.c:42: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/customlinecap.c:54: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/customlinecap.c:56: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/customlinecap.c:96: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/customlinecap.c:98: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/font.c:178: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/font.c:212: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/font.c:214: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/gdiplus/graphics.c:351: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:452: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:511: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:515: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:552: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:622: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:1084: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:1332: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:2044: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphics.c:2903: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:199: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:501: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:503: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:548: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:579: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:635: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:637: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:705: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:706: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:756: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:757: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:794: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:830: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:993: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/graphicspath.c:994: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/image.c:446: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/image.c:983: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/image.c:984: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/image.c:1164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/matrix.c:53: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/matrix.c:92: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/matrix.c:164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:52: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:53: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:100: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:101: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:192: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:324: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pathiterator.c:325: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pen.c:203: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/pen.c:404: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:292: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:299: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:611: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:618: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:654: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/region.c:725: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/stringformat.c:171: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/stringformat.c:270: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/stringformat.c:310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/tests/font.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gdiplus/tests/font.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/tests/font.c:152: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gdiplus/tests/graphicspath.c:36: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:39: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:42: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:45: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:52: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:57: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:59: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/gdiplus/tests/graphicspath.c:83: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/gphoto2.ds/capability.c:244: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/gphoto2.ds/capability.c:260: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/chm.c:315: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/content.c:83: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/content.c:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/hhctrl.ocx/content.c:157: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/hhctrl.ocx/content.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/content.c:210: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/content.c:212: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/help.c:60: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/hhctrl.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/hhctrl.c:193: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/hhctrl.c:195: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/hhctrl.c:218: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/hhctrl.c:220: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/hhctrl.h:179: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hhctrl.ocx/hhctrl.h:199: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hhctrl.ocx/hhctrl.h:201: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/hlink/browse_ctx.c:160: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hlink/extserv.c:252: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hlink/extserv.c:253: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hlink/hlink_private.h:59: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hlink/hlink_private.h:74: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/hlink/tests/hlink.c:62: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/hlink/tests/hlink.c:71: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/hlink/tests/hlink.c:73: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/hlink/tests/hlink.c:839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iccvid/iccvid.c:69: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iccvid/iccvid.c:97: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iccvid/iccvid.c:484: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iccvid/iccvid.c:485: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iccvid/iccvid.c:822: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imaadp32.acm/imaadp32.c:483: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imaadp32.acm/imaadp32.c:485: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imaadp32.acm/imaadp32.c:487: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imaadp32.acm/imaadp32.c:489: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:119: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:121: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:197: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:205: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:241: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/imm32/imm.c:247: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/imm32/imm.c:328: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:816: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:920: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:965: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:1122: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:1259: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:1262: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:1269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:1667: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:1969: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:1970: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:2021: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:2025: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:2028: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:2032: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:2353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:2364: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:2417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:2419: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/imm.c:2427: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/imm.c:2429: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/imm32/tests/imm32.c:68: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/imm32/tests/imm32.c:178: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/inetcomm/internettransport.c:78: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/inetcomm/internettransport.c:117: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/inetcomm/internettransport.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/inetcomm/mimeole.c:123: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:323: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:368: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:405: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:765: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:768: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:1520: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:1521: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:1574: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/inetcomm/mimeole.c:1580: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/infosoft/infosoft_main.c:168: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/infosoft/infosoft_main.c:169: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/infosoft/infosoft_main.c:175: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/iphlpapi/icmp.c:252: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/icmp.c:443: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:275: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:294: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:376: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:419: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:432: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:496: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:542: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ifenum.c:635: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:645: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:657: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ifenum.c:775: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ifenum.c:802: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ifenum.c:802: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ifenum.h:114: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ifenum.h:114: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ip_icmp.h:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/iphlpapi_main.c:634: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/iphlpapi_main.c:776: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/iphlpapi_main.c:778: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/iphlpapi_main.c:912: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/iphlpapi_main.c:988: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/iphlpapi_main.c:1141: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/iphlpapi_main.c:1217: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/iphlpapi_main.c:1284: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/iphlpapi_main.c:1351: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/iphlpapi_main.c:1718: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/iphlpapi/ipstats.c:191: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:339: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:342: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:527: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:530: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:683: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:686: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:804: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:807: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:953: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:955: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:1164: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:1166: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:1381: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:1383: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:1488: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/iphlpapi/ipstats.c:1490: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:1574: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/iphlpapi/ipstats.c:1685: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/itss/chm_lib.c:118: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/chm_lib.c:131: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/chm_lib.c:242: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:318: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:372: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:376: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:406: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:410: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:476: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:682: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/itss/chm_lib.c:1291: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/chm_lib.c:1312: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/itss.c:413: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/itss/lzx.c:735: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/lzx.c:747: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/lzx.c:799: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/itss/lzx.c:802: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/itss/protocol.c:173: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/itss/protocol.c:435: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/jscript/jscript_main.c:178: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/actctx.c:63: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:66: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:76: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:79: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:86: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:89: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:96: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:99: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:235: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/actctx.c:237: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/atom.c:118: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/atom.c:161: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/atom.c:289: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/atom.c:324: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/atom.c:406: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/atom.c:410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/atom.c:442: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/atom.c:446: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/atom.c:465: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/atom.c:481: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/atom.c:522: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/atom16.c:202: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/atom16.c:244: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/atom16.c:334: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/atom16.c:341: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/atom16.c:354: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/comm.c:1207: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/comm.c:1209: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/comm.c:1360: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/comm.c:1362: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/computername.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/computername.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/computername.c:237: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/computername.c:258: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/computername.c:271: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/computername.c:315: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/computername.c:347: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/computername.c:411: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/computername.c:447: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/computername.c:463: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/computername.c:495: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/computername.c:504: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/computername.c:612: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/computername.c:615: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/computername.c:680: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/computername.c:708: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/console.c:97: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:124: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:314: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/console.c:406: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/console.c:464: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/console.c:535: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:540: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:599: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:967: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:969: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:1154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/console.c:1223: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/console.c:1360: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/console.c:1537: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:1540: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:2134: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:2140: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/console.c:2395: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/cpu.c:146: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/cpu.c:149: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/cpu.c:158: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/cpu.c:198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/cpu.c:216: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/cpu.c:226: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/cpu.c:232: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/cpu.c:238: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/cpu.c:401: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/cpu.c:402: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/cpu.c:548: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/cpu.c:550: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/cpu.c:665: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/debugger.c:410: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/debugger.c:414: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/editline.c:210: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/editline.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/editline.c:312: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/editline.c:472: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/editline.c:474: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/error16.c:204: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/error16.c:212: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/error16.c:221: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/error16.c:224: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/error16.c:240: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/except.c:80: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/except.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/except.c:217: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/except.c:254: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/except.c:275: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/except.c:288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/file.c:128: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/file.c:131: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/file.c:1839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/file.c:1914: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/file.c:2033: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/file.c:2035: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/file16.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/file16.c:96: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/file16.c:365: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/file16.c:377: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/file16.c:390: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/file16.c:585: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/file16.c:594: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/format_msg.c:84: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/format_msg.c:88: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/format_msg.c:90: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/format_msg.c:120: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/format_msg.c:248: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/format_msg.c:335: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/global16.c:374: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/heap.c:626: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/heap.c:1242: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/heap.c:1245: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/kernel16.c:184: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/kernel16.c:233: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/kernel16.c:242: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/kernel16_private.h:169: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:479: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/lcformat.c:614: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/lcformat.c:615: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:626: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:700: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:912: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:916: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:921: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:927: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:1183: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:1186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:1252: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:1256: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:1261: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:1266: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:1272: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lcformat.c:1570: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:1573: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lcformat.c:1596: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/lcformat.c:1684: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/lcformat.c:1765: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/local16.c:663: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/local16.c:667: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/local16.c:796: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/local16.c:1376: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/local16.c:1389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/local16.c:1394: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/local16.c:1857: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:254: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:1110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1184: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1262: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1307: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1311: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1324: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1372: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:1378: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:1639: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1668: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:1711: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:1735: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:1741: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/locale.c:1799: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2098: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:2100: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/locale.c:2289: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2292: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2488: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2493: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2500: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2572: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2582: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2722: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2727: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2734: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2736: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2741: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2749: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/locale.c:2869: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:2879: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/locale.c:2980: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:3005: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:3007: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:3028: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:3065: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/locale.c:3152: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:3153: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:3346: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:3604: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/locale.c:3606: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/lzexpand.c:143: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lzexpand.c:144: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lzexpand.c:145: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lzexpand.c:148: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/lzexpand.c:318: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/lzexpand.c:525: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/module.c:94: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/module.c:137: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/module.c:236: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/module.c:237: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/module.c:635: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/module.c:647: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/module.c:760: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:327: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:428: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:459: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:478: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:523: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:575: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:710: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:734: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:853: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:855: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:867: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/ne_module.c:1048: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:1063: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/ne_module.c:1471: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:1574: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:1638: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:1667: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:1718: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:1824: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_module.c:1924: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_module.c:1986: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_segment.c:146: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_segment.c:205: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/ne_segment.c:266: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/ne_segment.c:430: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/oldconfig.c:107: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/oldconfig.c:160: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/oldconfig.c:269: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/oldconfig.c:270: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/oldconfig.c:271: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/oldconfig.c:272: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/oldconfig.c:343: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/oldconfig.c:359: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/oldconfig.c:375: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/oldconfig.c:381: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/oldconfig.c:382: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/oldconfig.c:405: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/oldconfig.c:445: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/path.c:202: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/path.c:209: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/path.c:489: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:145: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/process.c:281: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:307: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:328: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/process.c:426: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/process.c:456: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:491: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:495: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:554: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:561: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:757: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:760: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:817: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:818: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:1039: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/process.c:1282: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/process.c:1532: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/process.c:1539: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/kernel32/process.c:1564: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/process.c:1565: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/process.c:1727: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:1791: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/process.c:1863: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:1865: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/process.c:2071: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/process.c:2087: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:97: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/profile.c:350: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/profile.c:357: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/profile.c:363: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/profile.c:370: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/profile.c:438: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:470: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:476: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:935: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:942: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:1118: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/profile.c:1549: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/profile.c:1551: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/relay16.c:110: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/relay16.c:171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/relay16.c:173: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/relay16.c:266: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/relay16.c:274: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/relay16.c:413: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/resource.c:337: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:731: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:803: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:989: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:1240: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:1241: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:1278: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:1314: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource.c:1354: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource16.c:567: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource16.c:704: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/resource16.c:857: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/selector.c:434: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/selector.c:452: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/snoop16.c:63: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/snoop16.c:173: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/snoop16.c:199: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/snoop16.c:210: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/snoop16.c:306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/string.c:63: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/string.c:90: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/string.c:148: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/sync.c:460: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:530: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:670: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:720: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:795: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:846: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:915: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:966: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:1166: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:1288: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/sync.c:1305: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:1379: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/sync.c:1590: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:1592: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:1734: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:1736: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:2033: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/sync.c:2040: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/task.c:262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/task.c:295: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/task.c:299: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:339: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:444: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/task.c:458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:1249: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:1621: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:1622: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/task.c:1623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/actctx.c:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/actctx.c:175: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:181: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:191: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:207: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:226: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:574: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:604: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:632: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:652: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/actctx.c:1082: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/actctx.c:1083: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/actctx.c:1089: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/atom.c:151: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/atom.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/atom.c:199: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/atom.c:201: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/atom.c:331: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/atom.c:423: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/atom.c:487: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/atom.c:489: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/atom.c:600: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:93: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:94: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:96: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:337: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:379: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:608: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:707: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:791: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/change.c:792: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/codepage.c:127: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/codepage.c:139: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/codepage.c:145: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/codepage.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/codepage.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/codepage.c:204: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/codepage.c:208: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/codepage.c:218: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/comm.c:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/comm.c:565: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/comm.c:588: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/comm.c:717: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/comm.c:834: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/console.c:650: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/console.c:837: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/console.c:838: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/debugger.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/debugger.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/debugger.c:202: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/debugger.c:307: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/debugger.c:318: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/directory.c:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/directory.c:95: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/directory.c:153: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/directory.c:401: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/environ.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/environ.c:233: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/environ.c:243: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/environ.c:280: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/environ.c:294: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/environ.c:295: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:65: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:112: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:119: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:218: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:343: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:381: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:420: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:465: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:472: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:548: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:549: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:553: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:657: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:658: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:785: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:786: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:787: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:788: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:814: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:861: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:862: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:902: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:969: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1272: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1273: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1298: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1312: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1323: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1332: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1340: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1349: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1366: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1384: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1393: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1402: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1411: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1423: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1580: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/file.c:1606: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1607: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1679: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1680: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1681: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1931: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/file.c:1938: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/loader.c:233: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/loader.c:234: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/loader.c:240: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/loader.c:241: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:124: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/locale.c:125: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/locale.c:138: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:209: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/locale.c:274: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/locale.c:327: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:470: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:676: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:1016: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:1426: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:1435: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:1442: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/locale.c:1450: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/locale.c:1458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/locale.c:1470: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:2182: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:2193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/locale.c:2261: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/mailslot.c:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/module.c:39: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/module.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/module.c:134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/module.c:147: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/module.c:157: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/path.c:340: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:341: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:352: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:353: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:523: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:704: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:791: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:792: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:794: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:795: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:797: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:798: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:800: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:801: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:803: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:804: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:806: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:807: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:809: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:810: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/path.c:818: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/path.c:857: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/tests/path.c:892: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/path.c:893: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/path.c:894: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/path.c:1168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:422: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:544: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:625: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:712: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:767: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:933: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/pipe.c:1269: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:39: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:40: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:85: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/process.c:100: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/process.c:187: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:223: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:286: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:369: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:390: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:449: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:719: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:824: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:827: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:876: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:888: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/process.c:903: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/process.c:927: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:978: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/process.c:980: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/process.c:982: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/tests/process.c:1015: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:1061: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:1117: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/process.c:1288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/profile.c:98: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/profile.c:137: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/profile.c:202: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/profile.c:298: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/resource.c:74: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/resource.c:81: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/tests/sync.c:448: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/sync.c:449: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/thread.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/thread.c:266: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/thread.c:268: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/thread.c:271: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/kernel32/tests/time.c:230: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/toolhelp.c:31: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/toolhelp.c:286: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/virtual.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/virtual.c:573: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/volume.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/volume.c:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/tests/volume.c:91: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:65: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:92: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:116: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:117: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:130: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:131: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/thunk.c:603: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/thunk.c:623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/thunk.c:832: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/thunk.c:1279: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/thunk.c:1351: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/toolhelp.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/toolhelp.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/toolhelp.c:171: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/toolhelp.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/toolhelp.h:228: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/toolhelp.h:231: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/toolhelp.h:256: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/toolhelp.h:316: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/toolhelp16.c:112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/virtual.c:320: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/virtual.c:434: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/volume.c:122: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/volume.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/volume.c:184: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/volume.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/volume.c:224: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/volume.c:730: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/volume.c:850: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:934: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:939: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:953: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/volume.c:962: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:972: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:989: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/volume.c:1013: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:1015: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:1017: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/volume.c:1130: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/kernel32/volume.c:1507: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/vxd.c:103: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/vxd.c:111: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/vxd.c:112: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/kernel32/wowthunk.c:562: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/kernel32/wowthunk.c:754: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/kernel32/wowthunk.c:756: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/localspl/localmon.c:533: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/localmon.c:681: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/localmon.c:746: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/localspl_main.c:230: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/localspl_main.c:532: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/localspl_main.c:558: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/localspl_main.c:974: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/tests/localmon.c:179: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/tests/localmon.c:183: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/tests/localmon.c:187: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localspl/tests/localmon.c:191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localui/localui.c:121: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/localui/tests/localui.c:302: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/localui/tests/localui.c:313: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/lz32/tests/lzexpand_main.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:85: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/lz32/tests/lzexpand_main.c:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:123: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:124: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:253: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:254: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:352: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:353: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:582: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:667: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:668: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/lz32/tests/lzexpand_main.c:762: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mapi32/prop.c:92: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:98: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:103: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:148: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:163: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:184: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:805: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:819: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:825: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:830: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:851: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:865: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:878: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/prop.c:886: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/tests/prop.c:402: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mapi32/tests/prop.c:530: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mapi32/tests/prop.c:807: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mapi32/tests/prop.c:838: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/tests/util.c:140: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mapi32/util.c:417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mapi32/util.c:711: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mapi32/util.c:866: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mciavi32/info.c:228: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mciavi32/info.c:230: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:263: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mciavi32/info.c:265: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mcicda/mcicda.c:914: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mcicda/mcicda.c:919: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mcicda/mcicda.c:924: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mciseq/mcimidi.c:143: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mciseq/mcimidi.c:390: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mciseq/mcimidi.c:413: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mciseq/mcimidi.c:415: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mciseq/mcimidi.c:422: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mciseq/mcimidi.c:424: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mciseq/mcimidi.c:1044: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mciwave/mciwave.c:113: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mciwave/mciwave.c:481: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mlang/mlang.c:786: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:788: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:806: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:808: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:813: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:815: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:825: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:827: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:937: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:939: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:1235: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:1566: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mlang/mlang.c:1749: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mlang/mlang.c:1813: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:1815: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:1817: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2280: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mlang/mlang.c:2512: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2514: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2516: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2518: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2521: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2523: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2602: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2624: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/mlang.c:2883: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/tests/mlang.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mlang/tests/mlang.c:141: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/tests/mlang.c:150: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/tests/mlang.c:159: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mlang/tests/mlang.c:231: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mlang/tests/mlang.c:235: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:236: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:237: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:238: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:239: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:240: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:241: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:242: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:243: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:244: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:245: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:246: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mlang/tests/mlang.c:247: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mountmgr.sys/device.c:59: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mountmgr.sys/device.c:93: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/device.c:223: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/device.c:251: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/diskarb.c:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/diskarb.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/diskarb.c:60: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mountmgr.sys/diskarb.c:91: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/diskarb.c:101: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mountmgr.sys/hal.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mountmgr.sys/mountmgr.c:224: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mountmgr.sys/mountmgr.c:227: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mountmgr.sys/mountmgr.c:317: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mountmgr.sys/mountmgr.c:322: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mountmgr.sys/mountmgr.c:383: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mountmgr.sys/mountmgr.c:392: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mountmgr.sys/mountmgr.c:419: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mpr/pwcache.c:61: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mpr/pwcache.c:261: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mpr/pwcache.c:304: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mpr/wnet.c:291: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mpr/wnet.c:501: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mpr/wnet.c:566: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:569: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:572: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:575: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mpr/wnet.c:593: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:599: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:605: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:611: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:1678: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:1689: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:2071: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mpr/wnet.c:2078: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32.drv/wavemap.c:522: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32.drv/wavemap.c:1074: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/driver.c:83: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/driver.c:86: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/driver.c:268: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/driver.c:306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/driver.c:546: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/filter.c:364: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/format.c:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msacm32/format.c:77: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msacm32/format.c:369: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/format.c:700: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/format.c:808: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/format.c:836: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/pcmconverter.c:230: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/pcmconverter.c:236: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/pcmconverter.c:242: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/pcmconverter.c:248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/pcmconverter.c:734: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/pcmconverter.c:736: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/pcmconverter.c:738: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/pcmconverter.c:740: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msacm32/stream.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/stream.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/stream.c:206: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/stream.c:208: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/stream.c:211: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msacm32/wineacm.h:77: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msacm32/wineacm.h:78: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msadp32.acm/msadp32.c:158: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msadp32.acm/msadp32.c:329: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msadp32.acm/msadp32.c:331: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msadp32.acm/msadp32.c:333: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msadp32.acm/msadp32.c:335: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/handle.c:141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/handle.c:222: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/icc.c:47: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/icc.c:59: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/icc.c:89: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/icc.c:94: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/mscms_priv.h:44: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/profile.c:52: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:54: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:89: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:92: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:94: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:97: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:197: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:200: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:202: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:205: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:476: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/profile.c:825: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/profile.c:855: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/profile.c:1091: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:1096: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:1339: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:1344: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:1403: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:1409: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/profile.c:1456: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/tests/profile.c:157: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:234: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:455: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:546: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:547: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:1143: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:1330: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:1368: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:1434: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:1435: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mscms/tests/profile.c:1455: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/tests/profile.c:1492: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/tests/profile.c:1493: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/transform.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscms/transform.c:112: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscms/transform.c:113: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mscoree/mscoree_main.c:378: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mscoree/mscoree_main.c:383: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msdmo/dmoreg.c:380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msdmo/dmoreg.c:390: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msdmo/dmort.c:186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msg711.acm/msg711.c:215: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msg711.acm/msg711.c:236: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msg711.acm/msg711.c:664: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msg711.acm/msg711.c:666: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msg711.acm/msg711.c:668: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msg711.acm/msg711.c:670: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/editor.c:405: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/editor.c:593: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/editor.c:595: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/editor.c:612: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/editor.c:614: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mshtml/editor.c:1131: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/editor.c:1132: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/htmlstyle.c:105: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/htmlwindow.c:1191: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/htmlwindow.c:1193: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/install.c:101: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/install.c:103: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/install.c:114: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/install.c:116: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/install.c:121: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/install.c:134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/install.c:145: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/mshtml/install.c:188: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mshtml/install.c:268: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/install.c:269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/install.c:270: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/install.c:445: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/loadopts.c:142: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/loadopts.c:180: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/main.c:365: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mshtml/mshtml_private.h:678: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/mshtml_private.h:693: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/mshtml_private.h:706: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/mshtml_private.h:708: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/navigate.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/navigate.c:164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/navigate.c:458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/navigate.c:651: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/navigate.c:658: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/navigate.c:871: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/nsembed.c:194: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/nsembed.c:276: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/nsembed.c:306: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/nsio.c:690: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mshtml/nsio.c:823: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mshtml/nsio.c:825: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/mshtml/nsio.c:1258: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/nsio.c:1567: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/nsio.c:1743: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/nsio.c:2107: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/nsio.c:2119: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/nsservice.c:358: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/persist.c:145: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:266: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:334: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:432: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:684: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:758: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:872: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:887: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/protocol.c:888: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/script.c:582: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/script.c:584: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/script.c:762: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/dom.c:281: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/dom.c:290: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/dom.c:292: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mshtml/tests/dom.c:303: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/tests/dom.c:312: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/tests/dom.c:314: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/mshtml/tests/dom.c:2671: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/dom.c:2740: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/htmldoc.c:188: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/htmldoc.c:190: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mshtml/tests/htmldoc.c:200: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/htmldoc.c:438: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/htmldoc.c:711: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/htmldoc.c:1096: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/htmldoc.c:1416: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/htmldoc.c:1419: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/htmldoc.c:4069: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/protocol.c:75: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/script.c:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/script.c:106: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/tests/script.c:108: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mshtml/tests/script.c:200: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mshtml/tests/script.c:922: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/mshtml/txtrange.c:200: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/action.c:324: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/action.c:344: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/action.c:3181: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/appsearch.c:648: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/appsearch.c:651: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/appsearch.c:673: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/cond.tab.c:1151: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/cond.tab.c:1168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/cond.tab.c:1336: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/cond.tab.c:2495: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/cond.tab.c:2509: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/dialog.c:289: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/dialog.c:993: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/font.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/format.c:523: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/format.c:541: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/format.c:885: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/format.c:893: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/msi.c:1563: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/msi.c:1596: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/msi.c:2897: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/msi.c:2898: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/msi.c:2951: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/msipriv.h:1087: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/msipriv.h:1090: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/registry.c:306: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/registry.c:1280: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/sql.tab.c:1234: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/sql.tab.c:1251: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/sql.tab.c:1419: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/sql.tab.c:2595: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/string.c:221: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/string.c:225: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/string.c:278: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/string.c:335: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/string.c:426: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/string.c:432: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/suminfo.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/suminfo.c:295: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/suminfo.c:333: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/suminfo.c:414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/suminfo.c:417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/suminfo.c:609: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/table.c:1563: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msi/tests/automation.c:278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/automation.c:417: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/automation.c:421: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/automation.c:661: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/automation.c:664: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/automation.c:1768: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/automation.c:2367: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/automation.c:2442: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:326: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:464: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:740: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:1051: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:1129: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:1257: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:1260: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:1400: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:1401: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:2068: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:2279: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/db.c:2383: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/db.c:2401: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:3263: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:4376: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:4544: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/db.c:4617: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:5193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:5260: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:5374: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:5580: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:5792: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:5844: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:6040: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/db.c:6067: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:6068: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/db.c:6159: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/db.c:6165: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/db.c:6171: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/db.c:6211: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/db.c:6270: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/format.c:282: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/format.c:357: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/format.c:384: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/format.c:1675: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/format.c:2358: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/msi/tests/format.c:2413: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/msi/tests/format.c:2415: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/msi/tests/install.c:1365: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:1366: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:1694: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:1734: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:2072: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/msi/tests/install.c:2075: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/msi/tests/install.c:2267: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:2347: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:2348: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:2349: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:3159: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:3160: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:3972: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/install.c:4168: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/install.c:4349: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/install.c:5402: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/msi.c:312: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/msi.c:2263: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/msi.c:2270: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/msi.c:2280: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/msi.c:2281: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/msi.c:2282: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:624: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/package.c:687: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:738: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:1578: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:1591: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:1804: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:1892: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/msi/tests/package.c:1980: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:2013: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/package.c:2031: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/package.c:2043: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/package.c:2068: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:5370: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/package.c:6098: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/package.c:6258: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/package.c:6290: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/package.c:6298: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/package.c:6302: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msi/tests/package.c:7415: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/package.c:7524: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msi/tests/record.c:30: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/record.c:53: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/record.c:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/source.c:145: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/suminfo.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tests/suminfo.c:368: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msi/tokenize.c:144: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msimtf/main.c:179: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msisip/main.c:194: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msisip/main.c:198: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msrle32/msrle32.c:1302: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msrle32/msrle32.c:1592: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msrle32/msrle32.c:1705: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msrle32/msrle32.c:1791: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mstask/mstask_main.c:73: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/mstask/mstask_main.c:104: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/mstask/tests/task.c:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/console.c:290: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/cpp.c:141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/cppexcept.h:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/ctype.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/data.c:90: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/data.c:121: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/data.c:238: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/dir.c:414: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/dir.c:507: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/dir.c:508: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/dir.c:717: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/dir.c:732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/dir.c:958: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/dir.c:992: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/dir.c:1055: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/exit.c:105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/exit.c:137: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/exit.c:138: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/exit.c:171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/exit.c:224: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/file.c:90: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/file.c:1960: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/file.c:2403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/file.c:2599: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/file.c:2632: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/file.c:2972: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/file.c:3019: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:46: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:110: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:111: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:112: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:113: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:114: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:115: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:152: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:179: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:227: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:275: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/locale.c:358: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:379: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:397: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/locale.c:403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/math.c:878: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/math.c:960: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/mbcs.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/mbcs.c:60: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/mbcs.c:71: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/mbcs.c:165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/mbcs.c:243: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/mbcs.c:911: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/misc.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/msvcrt.h:293: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/msvcrt.h:302: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/process.c:58: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/process.c:76: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/process.c:98: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/process.c:118: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/process.c:217: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/process.c:247: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/process.c:260: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/process.c:312: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/process.c:352: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/process.c:364: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/cpp.c:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/cpp.c:745: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/dir.c:79: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:102: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/dir.c:103: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/dir.c:104: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/dir.c:105: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/dir.c:110: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/dir.c:126: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:127: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:128: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:129: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:130: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:131: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/dir.c:139: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/dir.c:146: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/dir.c:154: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/dir.c:159: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/dir.c:163: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/dir.c:170: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/file.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:46: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:50: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:62: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:69: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:73: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:115: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:127: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:144: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:153: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:169: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:174: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:277: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:280: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:283: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:292: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:297: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:312: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/file.c:314: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/tests/file.c:325: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:344: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:353: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:372: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:386: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:409: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:422: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:442: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:457: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:517: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:522: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:533: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:544: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:565: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:572: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:575: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:580: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:583: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:587: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:592: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:614: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:714: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:738: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:740: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:745: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/file.c:754: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:759: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/file.c:770: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:832: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:834: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:837: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:839: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:842: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:846: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:903: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/file.c:1012: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:1015: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:1016: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/file.c:1030: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/file.c:1031: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/file.c:1058: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/file.c:1059: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/file.c:1092: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/msvcrt/tests/heap.c:109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/tests/heap.c:146: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:146: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:181: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:182: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/tests/heap.c:218: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:218: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:219: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/heap.c:219: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/printf.c:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/printf.c:510: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/printf.c:541: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/scanf.c:27: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/scanf.c:28: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/scanf.c:70: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:74: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:78: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:88: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:89: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:94: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/scanf.c:113: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/scanf.c:124: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:142: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:147: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:171: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:177: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/scanf.c:194: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/msvcrt/tests/string.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:39: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/tests/string.c:66: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:67: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:75: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/tests/string.c:83: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/tests/string.c:91: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/tests/string.c:99: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/tests/string.c:184: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:403: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:458: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:521: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/string.c:612: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/time.c:58: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/time.c:160: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/time.c:198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/time.c:211: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/time.c:224: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/tests/time.c:238: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/thread.c:64: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/time.c:315: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/time.c:316: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/time.c:317: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/time.c:391: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/time.c:430: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/time.c:441: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/undname.c:193: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/undname.c:271: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/undname.c:604: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/wcs.c:43: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/wcs.c:203: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/wcs.c:208: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/wcs.c:241: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/wcs.c:246: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvcrt/wcs.c:251: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/wcs.c:256: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/wcs.c:261: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/wcs.c:401: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/wcs.c:406: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/wcs.c:422: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/wcs.c:676: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/wcs.c:680: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/wcs.c:682: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/msvcrt/wcs.c:696: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/wcs.c:719: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvcrt/wcs.c:780: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/wcs.c:782: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvcrt/wcs.c:1045: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/drawdib.c:251: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/drawdib.c:279: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/drawdib.c:366: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/mciwnd.c:798: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvfw32/mciwnd.c:842: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvfw32/mciwnd.c:1001: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/mciwnd.c:1130: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvfw32/msvideo16.c:431: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvfw32/msvideo16.c:432: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvfw32/msvideo16.c:433: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvfw32/msvideo16.c:774: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvfw32/msvideo16.c:853: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/msvideo_main.c:98: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvfw32/msvideo_main.c:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvfw32/msvideo_main.c:191: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvfw32/msvideo_main.c:252: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvfw32/msvideo_main.c:255: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msvfw32/msvideo_main.c:1310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/msvideo_main.c:1312: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvfw32/msvideo_main.c:1343: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvidc32/msvideo1.c:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msvidc32/msvideo1.c:150: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msvidc32/msvideo1.c:364: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/cdata.c:654: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/cdata.c:656: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/cdata.c:659: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/comment.c:675: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/comment.c:677: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/comment.c:680: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/element.c:478: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/element.c:480: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/element.c:486: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/element.c:489: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/msxml_private.h:204: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/node.c:284: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/node.c:288: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:155: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:160: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:179: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:180: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:185: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:187: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:1256: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/saxreader.c:1275: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/saxreader.c:1278: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/tests/domdoc.c:211: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/tests/domdoc.c:213: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/msxml3/tests/domdoc.c:356: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/tests/domdoc.c:381: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/tests/domdoc.c:3319: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/tests/saxreader.c:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/tests/saxreader.c:531: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/tests/xmldoc.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/tests/xmlelem.c:239: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/msxml3/text.c:656: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/text.c:658: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/text.c:661: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/msxml3/xmlelem.c:178: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbnamecache.c:70: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/netapi32/nbnamecache.c:160: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbnamecache.c:192: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:159: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/netapi32/nbt.c:190: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:481: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:482: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:579: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:726: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:743: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:844: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:897: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:900: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:1019: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:1392: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/nbt.c:1525: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/netapi32/nbt.c:1553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/netbios.c:153: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/netbios.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/netbios.c:524: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/netbios.c:526: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/netbios.c:559: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/netbios.c:560: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/wksta.c:287: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/wksta.c:553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/wksta.c:556: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/netapi32/wksta.c:559: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:1588: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:1803: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/actctx.c:1850: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:1878: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:1879: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2483: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2490: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2497: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2558: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/actctx.c:2609: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/atom.c:114: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/cdrom.c:169: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ntdll/cdrom.c:226: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/cdrom.c:365: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/cdrom.c:897: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:999: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1004: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1515: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1554: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1638: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1685: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1808: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1815: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1856: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1867: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1877: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:1894: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:2025: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:2033: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:2041: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/cdrom.c:2182: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/cdrom.c:2193: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:88: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/directory.c:106: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/directory.c:187: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:194: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:218: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:253: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:275: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/directory.c:435: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:446: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:452: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:470: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:499: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:510: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:516: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:560: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:588: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:666: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/directory.c:732: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/directory.c:961: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/directory.c:1113: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/directory.c:1262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/directory.c:1584: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:1664: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:1783: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:1811: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:1816: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:1821: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:1940: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ntdll/directory.c:2206: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/directory.c:2260: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/env.c:60: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/env.c:250: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/env.c:253: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/env.c:326: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/env.c:403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/file.c:2050: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/heap.c:1441: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/large_int.c:438: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/large_int.c:440: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/large_int.c:504: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:833: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:899: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1253: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/loader.c:1291: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1301: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1498: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/loader.c:1679: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1694: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1696: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1698: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loader.c:1805: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/loadorder.c:377: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/nt.c:269: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/nt.c:312: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:703: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:723: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:738: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:757: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:872: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:893: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:914: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:930: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:946: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:963: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/nt.c:988: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/ntdll_misc.h:169: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/ntdll_misc.h:170: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/om.c:212: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:374: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:751: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:815: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:854: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/path.c:935: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:1008: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:1050: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/path.c:1075: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/process.c:174: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/process.c:200: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/process.c:226: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/process.c:263: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:265: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:285: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:397: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:407: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:488: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:500: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:562: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:833: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/reg.c:847: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:957: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:964: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:970: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/reg.c:978: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/relay.c:71: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/relay.c:145: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/relay.c:229: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/relay.c:231: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ntdll/relay.c:432: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/relay.c:514: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/relay.c:569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/relay.c:872: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtl.c:305: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/rtl.c:345: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/rtlbitmap.c:54: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/rtlstr.c:196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:282: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:338: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:390: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:1385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:1414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:1450: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:1488: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:1619: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/rtlstr.c:1839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:1841: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/rtlstr.c:2003: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:858: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:871: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:883: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:895: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:907: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:997: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:1004: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:1011: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:1018: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:1159: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sec.c:1722: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/serial.c:129: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/serial.c:129: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ntdll/server.c:706: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/server.c:751: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/server.c:789: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/server.c:825: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/ntdll/signal_i386.c:696: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/signal_i386.c:701: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/signal_i386.c:731: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/signal_i386.c:734: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/signal_i386.c:763: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/signal_i386.c:832: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/signal_i386.c:883: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/string.c:486: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/string.c:503: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/string.c:530: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/string.c:559: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/string.c:607: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/string.c:624: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/string.c:660: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/string.c:689: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/string.c:855: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/string.c:870: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sync.c:114: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sync.c:116: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sync.c:118: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/sync.c:120: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tape.c:84: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tape.c:84: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ntdll/tests/atom.c:432: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/change.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/change.c:171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/env.c:172: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/env.c:190: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ntdll/tests/env.c:196: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ntdll/tests/exception.c:195: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/exception.c:313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/exception.c:629: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/file.c:84: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/file.c:147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/info.c:787: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/info.c:804: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/large_int.c:367: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/path.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/path.c:208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/path.c:222: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/port.c:94: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/rtlstr.c:91: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ntdll/tests/rtlstr.c:93: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ntdll/tests/rtlstr.c:520: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/rtlstr.c:521: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/rtlstr.c:522: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/rtlstr.c:768: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:911: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:920: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:992: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:1011: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/rtlstr.c:1068: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:1077: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/tests/rtlstr.c:1096: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/rtlstr.c:1647: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/string.c:211: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/string.c:230: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/string.c:249: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/string.c:588: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/tests/string.c:615: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/thread.c:211: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/thread.c:862: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/thread.c:1171: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/thread.c:1220: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/thread.c:1298: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/time.c:571: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/time.c:585: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/version.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/version.c:209: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/version.c:261: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/version.c:326: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/version.c:375: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/version.c:395: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/virtual.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntdll/wcstring.c:417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/wcstring.c:475: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/wcstring.c:551: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdll/wcstring.c:618: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdsapi/ntdsapi.c:95: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdsapi/ntdsapi.c:102: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdsapi/ntdsapi.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdsapi/ntdsapi.c:128: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntdsapi/tests/ntdsapi.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ntoskrnl.exe/ntoskrnl.c:790: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ntprint/ntprint.c:157: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/odbc32/proxyodbc.c:516: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/odbc32/proxyodbc.c:554: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/odbc32/proxyodbc.h:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/odbc32/proxyodbc.h:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/odbc32/proxyodbc.h:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/odbccp32/odbccp32.c:97: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/odbccp32/odbccp32.c:99: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/odbccp32/odbccp32.c:113: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/odbccp32/odbccp32.c:115: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/odbccp32/odbccp32.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/odbccp32/odbccp32.c:621: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/antimoniker.c:549: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/antimoniker.c:550: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/bindctx.c:254: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/bindctx.c:276: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/classmoniker.c:553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/classmoniker.c:646: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/classmoniker.c:648: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/clipboard.c:916: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/clipboard.c:985: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/clipboard.c:1080: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/clipboard.c:1269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/clipboard.c:1565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/clipboard.c:1685: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/compobj.c:915: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/compobj.c:1346: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ole32/compobj.c:1386: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/compobj.c:1395: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/compobj.c:1397: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/compobj.c:1420: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/compobj.c:1424: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/compositemoniker.c:1294: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/datacache.c:296: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/enumx.c:115: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/enumx.c:202: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/errorinfo.c:89: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/filemoniker.c:257: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/filemoniker.c:267: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/filemoniker.c:1285: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/filemoniker.c:1467: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/hglobalstream.c:243: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/hglobalstream.c:331: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/irot_c.c:15: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/irot_c.c:21: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/itemmoniker.c:290: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/itemmoniker.c:297: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/itemmoniker.c:315: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/itemmoniker.c:322: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/itemmoniker.c:980: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/memlockbytes.c:388: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/memlockbytes.c:467: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/memlockbytes16.c:302: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/memlockbytes16.c:416: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:137: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:274: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:275: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:467: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:533: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:1067: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/moniker.c:1442: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole16.c:451: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole16.c:594: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/ole2.c:374: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/ole2.c:389: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ole32/ole2.c:464: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/ole2.c:592: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/ole2.c:606: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ole32/ole2.c:645: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ole32/ole2.c:2264: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/ole2.c:2593: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2833: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2838: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2846: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2860: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2920: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2932: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2.c:2937: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole2impl.c:292: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/ole32_main.c:115: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/ole32_main.c:156: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleobj.c:738: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:148: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:371: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:387: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:542: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:544: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:546: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:563: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:576: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:591: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:604: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:747: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:749: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:751: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:753: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:766: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:794: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:796: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:802: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:829: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/oleproxy.c:831: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/rpc.c:144: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/rpc.c:1155: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/rpc.c:1214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/rpc.c:1265: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/rpc.c:1587: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/rpc.c:1774: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/stg_bigblockfile.c:779: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stg_bigblockfile.c:879: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stg_prop.c:372: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stg_prop.c:378: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/stg_prop.c:383: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/stg_prop.c:394: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/stg_prop.c:398: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/stg_prop.c:720: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stg_prop.c:1088: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stg_prop.c:1119: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stg_prop.c:1147: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:387: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:547: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:571: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:714: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/storage.c:754: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:781: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage.c:1250: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:1270: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:1508: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:1536: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage.c:1812: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage.c:1875: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage.c:1917: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage.c:1957: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage.c:2270: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:2541: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage32.c:3192: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:3293: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:3299: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:3380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:3385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:3927: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4258: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4265: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4272: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4279: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4288: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4292: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4304: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4316: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:4325: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:6093: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:7039: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage32.c:7042: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage32.c:7142: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/storage32.c:7143: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/storage32.c:7234: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:7235: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:7253: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ole32/storage32.c:7265: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/storage32.c:7357: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:7362: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/storage32.c:7633: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/stubmanager.c:87: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/clipboard.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/clipboard.c:157: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/hglobalstream.c:51: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/hglobalstream.c:225: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/hglobalstream.c:268: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/hglobalstream.c:275: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ole32/tests/marshal.c:2227: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/marshal.c:2235: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ole32/tests/marshal.c:2238: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ole32/tests/marshal.c:2576: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/marshal.c:2774: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/marshal.c:2777: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/marshal.c:2783: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/marshal.c:2788: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/moniker.c:368: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/moniker.c:745: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/moniker.c:817: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/moniker.c:905: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ole32/tests/ole2.c:1073: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/ole2.c:1197: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/tests/storage32.c:245: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/tests/storage32.c:691: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/usrmarshal.c:55: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ole32/usrmarshal.c:72: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ole32/usrmarshal.c:431: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/usrmarshal.c:511: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/usrmarshal.c:1684: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ole32/usrmarshal.c:1809: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/hash.c:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:70: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:108: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:146: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:183: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:221: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:259: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:297: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:335: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:373: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:411: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/hash.c:449: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/oleaut.c:260: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/oleaut.c:382: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/oleaut32_oaidl_p.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/oleaut32_oaidl_p.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/olefont.c:1601: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/olefont.c:1672: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/olefont.c:1674: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/olepicture.c:1041: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:1116: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:1133: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:1395: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:1850: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:1878: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:2001: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:2002: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/olepicture.c:2118: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/recinfo.c:258: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:226: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:889: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:969: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:1383: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:1467: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/safearray.c:1675: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:60: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/olepicture.c:67: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/olepicture.c:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/olepicture.c:100: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/olepicture.c:109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/olepicture.c:216: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:242: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:247: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:284: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:324: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:360: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:575: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/olepicture.c:605: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/safearray.c:533: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/safearray.c:1572: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/safearray.c:1593: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/tmarshal.c:40: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/tmarshal.c:59: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/tmarshal.c:84: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/tmarshal.c:709: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/typelib.c:590: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/typelib.c:690: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/typelib.c:693: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tests/typelib.c:980: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/typelib.c:991: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/typelib.c:1003: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/typelib.c:1282: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/typelib.c:1353: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/varformat.c:79: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/varformat.c:133: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/varformat.c:236: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/varformat.c:429: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartest.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartest.c:201: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:212: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:214: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:216: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:218: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:220: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:222: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:224: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:226: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:228: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:230: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:232: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:234: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:236: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:238: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tests/vartest.c:870: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartest.c:874: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/vartest.c:1788: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartest.c:3127: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartest.c:5227: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartype.c:123: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/vartype.c:3274: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/tests/vartype.c:3447: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tests/vartype.c:4785: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tmarshal.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:272: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tmarshal.c:273: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/tmarshal.c:279: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/tmarshal.c:945: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:955: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:1440: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:1454: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:2029: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/tmarshal.c:2144: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib.c:159: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:203: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:1057: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/oleaut32/typelib.c:1059: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/oleaut32/typelib.c:1061: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/oleaut32/typelib.c:1063: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/oleaut32/typelib.c:1065: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1066: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1067: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1068: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1069: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1070: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1071: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1072: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1073: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1074: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1075: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1076: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1077: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1078: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1079: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1080: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1081: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1082: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1083: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1084: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1085: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1087: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1088: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1089: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1092: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1095: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1100: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib.c:1105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib.c:1418: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:1444: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:1447: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:1483: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:1558: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:1567: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:1589: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:1598: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:1986: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib.c:2445: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:2460: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:2763: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib.c:2777: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:2791: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:2794: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:2806: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:2855: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:2919: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:3012: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib.c:3131: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib.c:3161: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:3163: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oleaut32/typelib.c:3565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:3574: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:3583: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:3589: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:4865: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:5086: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:5690: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib.c:5692: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib16.c:80: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib16.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib16.c:87: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib16.c:93: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/oleaut32/typelib2.c:142: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib2.c:157: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib2.c:368: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib2.c:412: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/typelib2.c:605: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib2.c:649: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/typelib2.c:731: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/ungif.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/ungif.c:217: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/ungif.c:519: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/ungif.c:918: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/usrmarshal.c:169: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:374: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:375: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:401: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:416: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:491: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:503: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:505: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:596: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:598: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:905: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:909: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:966: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:1031: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:1044: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/usrmarshal.c:1111: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/varformat.c:557: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/varformat.c:1349: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/varformat.c:1647: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/varformat.c:1981: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/varformat.c:2398: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/variant.c:60: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oleaut32/variant.c:654: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:880: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:886: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:1485: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:1490: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:1510: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:1818: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/variant.c:1853: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:51: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:54: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:59: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:64: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:65: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:66: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:67: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4737: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4740: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4773: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4807: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4948: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4953: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:4987: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5014: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5021: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5045: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5055: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5080: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5086: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5102: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5165: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5174: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5184: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5249: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5345: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5348: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:5966: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:6904: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oleaut32/vartype.c:6907: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oledlg/insobjdlg.c:517: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oledlg/insobjdlg.c:518: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oledlg/insobjdlg.c:561: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oledlg/insobjdlg.c:562: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oledlg/pastespl.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/oledlg/pastespl.c:123: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oledlg/pastespl.c:125: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/oledlg/pastespl.c:136: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oledlg/pastespl.c:441: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oledlg/pastespl.c:442: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oledlg/pastespl.c:443: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oledlg/pastespl.c:642: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/oledlg/pastespl.c:654: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/opengl32/wgl.c:256: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/opengl32/wgl.c:266: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/opengl32/wgl.c:659: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/opengl32/wgl.c:664: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/pdh/pdh_main.c:80: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/pdh/pdh_main.c:81: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/pdh/tests/pdh.c:631: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/psapi/tests/psapi_main.c:145: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/psapi/tests/psapi_main.c:168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/psapi/tests/psapi_main.c:203: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/psapi/tests/psapi_main.c:220: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/qcap/enummedia.c:44: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qcap/v4l.c:424: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qcap/v4l.c:779: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/qcap/v4l.c:795: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/qcap/v4l.c:797: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/qcap/v4l.c:875: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/file.c:96: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/file.c:111: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/file.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/file.c:171: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/job.c:313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/job.c:589: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/qmgr.h:120: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/qmgr/qmgr_main.c:90: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/qmgr/tests/job.c:313: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/qmgr/tests/job.c:314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/qmgr/tests/qmgr.c:168: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/qmgr/tests/qmgr.c:227: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/qmgrprxy/qmgrprxy_p.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/qmgrprxy/qmgrprxy_p.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/quartz/avidec.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avidec.c:246: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avidec.c:265: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avidec.c:267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avisplit.c:738: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avisplit.c:749: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avisplit.c:755: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/avisplit.c:761: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/quartz/avisplit.c:1047: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/dsoundrender.c:213: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/dsoundrender.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/enumfilters.c:64: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/enummedia.c:33: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/enummoniker.c:62: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/enumregfilters.c:79: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/enumregfilters.c:174: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtergraph.c:427: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtergraph.c:434: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtergraph.c:435: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtergraph.c:2238: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtergraph.c:2251: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtergraph.c:5426: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:199: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:603: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:604: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:664: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:687: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:688: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:707: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:906: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/filtermapper.c:1356: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/main.c:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/quartz/memallocator.c:186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/memallocator.c:732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/memallocator.c:744: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/mpegsplit.c:189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/mpegsplit.c:281: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/mpegsplit.c:507: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/mpegsplit.c:683: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/parser.c:485: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/parser.c:525: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/regsvr.c:429: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/quartz/regsvr.c:613: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/regsvr.c:616: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/regsvr.c:619: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/tests/avisplitter.c:198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/quartz/tests/filtergraph.c:321: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/tests/filtergraph.c:1505: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/quartz/tests/filtergraph.c:1506: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/quartz/videorenderer.c:1589: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/quartz/videorenderer.c:1591: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rasapi32/rasapi.c:259: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/clipboard.c:98: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/clipboard.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/clipboard.c:363: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/editor.c:304: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:444: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:2022: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/editor.c:3122: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/editor.c:3127: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/editor.c:3408: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:3413: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:3421: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:3426: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:3630: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.c:4091: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/editor.c:4158: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/editor.c:4517: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/editor.h:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/editor.h:224: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/editstr.h:292: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/editstr.h:303: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/para.c:371: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/para.c:400: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:401: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:402: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:403: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:404: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:407: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:412: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/para.c:470: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/para.c:543: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/reader.c:837: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/reader.c:1073: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/reader.c:2701: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/string.c:348: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/string.c:350: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/style.c:41: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:44: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/style.c:51: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:61: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:64: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/riched20/style.c:66: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:86: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:108: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:130: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:134: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:145: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:155: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:177: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/style.c:254: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/style.c:259: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/style.c:265: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:273: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:276: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:278: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:281: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:283: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:286: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:288: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:296: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:300: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:302: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/style.c:305: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/tests/editor.c:287: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:714: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/tests/editor.c:786: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/tests/editor.c:1228: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:1295: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:1326: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:1351: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:1490: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:1946: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/tests/editor.c:2065: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/tests/editor.c:3072: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/tests/editor.c:3095: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:3147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:3238: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:3523: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:3524: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:3741: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/tests/editor.c:3998: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:4299: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:4423: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/tests/editor.c:4446: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/tests/editor.c:4470: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched20/tests/editor.c:4482: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:4629: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:4698: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:4880: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:4933: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/tests/editor.c:5178: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:116: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:292: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:301: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:310: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:312: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:315: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:329: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:338: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:340: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:343: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:357: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:360: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:363: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:373: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:376: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:379: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:382: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:385: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:388: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:394: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:396: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:398: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:400: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:402: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:404: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:406: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:408: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:414: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:416: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:418: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:420: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:425: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:428: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:431: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:439: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:444: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:446: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:448: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:451: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:457: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:460: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:478: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:480: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:485: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:491: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:496: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:503: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:505: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:507: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:509: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:511: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:515: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:517: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:522: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:524: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:527: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:529: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:532: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:534: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:536: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:538: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:540: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:542: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:547: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:549: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:556: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:559: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:562: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:565: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:569: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:573: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/riched20/writer.c:594: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:617: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:650: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched20/writer.c:660: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched20/writer.c:667: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/riched32/tests/editor.c:70: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched32/tests/editor.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched32/tests/editor.c:180: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched32/tests/editor.c:303: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/riched32/tests/editor.c:314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched32/tests/editor.c:386: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched32/tests/editor.c:482: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/riched32/tests/editor.c:516: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/cpsf.c:208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/cpsf.c:275: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/epm.h:84: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/epm_c.c:15: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/epm_c.c:21: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/ndr_contexthandle.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_es.c:260: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_es.c:262: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_es.c:296: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:686: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:701: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:1685: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:2022: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:2053: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:4484: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:4691: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:4694: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:4922: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_marshall.c:5158: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_ole.c:136: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_ole.c:151: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_stubless.c:177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/ndr_stubless.c:260: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_binding.c:54: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_binding.c:75: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:77: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:86: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:88: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:100: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_binding.c:319: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_binding.c:333: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_binding.c:1280: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:1281: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:1282: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:1287: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:1288: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:1289: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/rpcrt4/rpc_binding.c:1296: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_binding.h:88: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_defs.h:31: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_defs.h:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_defs.h:83: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_defs.h:90: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_epmap.c:92: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_epmap.c:225: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_epmap.c:228: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_epmap.c:320: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:138: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:494: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:500: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:515: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:754: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:898: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_message.c:913: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:465: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:479: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:514: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:545: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:694: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:729: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/rpc_transport.c:797: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_transport.c:798: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_transport.c:874: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_transport.c:875: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpc_transport.c:1205: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/rpcrt4/rpc_transport.c:1667: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpcrt4_main.c:499: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/rpcrt4/rpcrt4_main.c:518: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/rpcrt4_main.c:522: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/rpcrt4/tests/cstub.c:66: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/cstub.c:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:334: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:877: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:947: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:954: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:981: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:982: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1238: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1415: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1648: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1649: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/rpc.c:142: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/rpc.c:143: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/rpc_async.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/server.c:513: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:557: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/server.c:695: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/server.c:703: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rpcrt4/tests/server.c:939: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:947: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:949: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/rpcrt4/tests/server.c:970: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:978: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:980: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/rpcrt4/tests/server.c:1001: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:1011: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rpcrt4/tests/server.c:1120: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/des.c:54: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/des.c:61: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/des.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/des.c:1288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/des.c:1354: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/handle.c:230: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.c:114: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.c:119: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.c:191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.c:322: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.c:384: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.c:438: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/implglue.h:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/implglue.h:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/implglue.h:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/implglue.h:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/md2.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/md2.c:110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/md2.c:144: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/md2.c:148: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rc2.c:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/rc2.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/rc4.c:63: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/rc4.c:68: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:399: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:488: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:489: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:561: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:571: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:659: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:690: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:742: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1345: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1365: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1421: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1428: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1690: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1698: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:1709: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2010: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2028: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2139: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2157: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2514: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2821: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2835: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2870: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:2874: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3259: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3274: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3277: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3280: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3300: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3319: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3490: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/rsaenh.c:3606: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/tests/rsaenh.c:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:73: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:248: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:276: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:279: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:282: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:291: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:447: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/tests/rsaenh.c:524: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:545: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/tests/rsaenh.c:572: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:601: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/tests/rsaenh.c:629: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:651: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/tests/rsaenh.c:678: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:707: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/rsaenh/tests/rsaenh.c:742: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:907: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:908: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:1802: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tests/rsaenh.c:1915: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tomcrypt.h:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/rsaenh/tomcrypt.h:164: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/sane.ds/sane_main.c:595: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/sane.ds/ui.c:67: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:88: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:108: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:133: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:170: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:181: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/sane.ds/ui.c:188: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:218: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/sane.ds/ui.c:225: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:262: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:268: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:276: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:332: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/sane.ds/ui.c:437: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/sane.ds/ui.c:450: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/sane.ds/ui.c:511: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/sane.ds/ui.c:554: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:556: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:577: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/sane.ds/ui.c:580: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/dispatcher.c:255: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/dispatcher.c:281: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/hmac_md5.c:27: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/hmac_md5.c:28: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/hmac_md5.c:37: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/hmac_md5.c:45: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/hmac_md5.c:46: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/hmac_md5.c:66: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/hmac_md5.c:69: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/hmac_md5.c:76: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/hmac_md5.h:31: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/hmac_md5.h:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/hmac_md5.h:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/ntlm.c:108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:126: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:254: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:259: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:274: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:278: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:288: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:292: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:302: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:307: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:587: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:593: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:780: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:864: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:908: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:953: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:957: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/ntlm.c:1112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:1166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:1207: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:1305: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:1546: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/ntlm.c:1548: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/secur32.c:187: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/secur32.c:193: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/secur32.c:244: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/secur32.c:315: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/secur32.c:377: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/secur32.c:824: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/secur32_priv.h:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/tests/main.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/tests/main.c:101: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/secur32/tests/ntlm.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/tests/ntlm.c:202: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/secur32/tests/ntlm.c:527: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:533: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:554: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1016: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1030: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1037: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1060: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1061: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1083: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1116: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/ntlm.c:1117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/tests/secur32.c:46: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/tests/secur32.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/thunks.c:380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/thunks.c:590: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/thunks.c:596: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/thunks.c:605: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/thunks.c:609: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/thunks.c:618: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/secur32/util.c:91: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/util.c:92: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/util.c:100: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/util.c:101: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/secur32/util.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/util.c:141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/util.c:154: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/secur32/wrapper.c:719: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/serialui/confdlg.c:420: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/serialui/confdlg.c:422: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/serialui/tests/confdlg.c:168: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/serialui/tests/confdlg.c:349: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/devinst.c:1187: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/devinst.c:1922: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/devinst.c:1929: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/devinst.c:1956: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/devinst.c:1963: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/devinst.c:1967: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/devinst.c:1975: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/dirid.c:148: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/dirid.c:163: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/dirid.c:285: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/diskspace.c:122: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/fakedll.c:79: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/fakedll.c:154: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/fakedll.c:193: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/install.c:231: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/install.c:269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/install.c:1066: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/install.c:1069: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/misc.c:284: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/misc.c:293: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/misc.c:930: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/misc.c:931: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/misc.c:1010: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:384: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:399: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:977: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/parser.c:1046: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:1071: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/parser.c:1710: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/query.c:130: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/queue.c:179: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/queue.c:211: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupapi_private.h:38: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/setupapi_private.h:60: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupapi_private.h:62: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:412: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:416: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:435: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:471: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:495: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:499: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupcab.c:503: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/setupx16.h:502: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/setupx16.h:505: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/setupx16.h:506: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/setupx16.h:536: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/setupx_main.c:284: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/setupx_main.c:308: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/setupx_main.c:318: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/setupx_main.c:422: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/setupx_main.c:549: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/stringtable.c:377: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/stringtable.c:389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/stringtable.c:447: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/stringtable.c:590: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/setupapi/tests/devinst.c:331: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/devinst.c:352: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/devinst.c:353: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/devinst.c:372: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/devinst.c:372: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/devinst.c:375: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/devinst.c:376: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/devinst.c:395: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/devinst.c:401: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/devinst.c:567: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:96: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/setupapi/tests/install.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:151: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:180: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:181: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:198: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:213: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:225: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:237: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:249: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:261: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:273: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:285: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/install.c:317: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:388: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/install.c:406: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/misc.c:58: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/misc.c:153: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:181: [2] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/misc.c:197: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:198: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:202: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:206: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:214: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:219: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/setupapi/tests/misc.c:256: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/setupapi/tests/misc.c:369: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/misc.c:411: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/misc.c:475: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/parser.c:80: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/parser.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/parser.c:255: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/parser.c:355: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/parser.c:509: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/parser.c:558: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/query.c:54: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/query.c:80: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/query.c:278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/query.c:326: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/tests/query.c:372: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/virtcopy.c:430: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/virtcopy.c:453: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/setupapi/virtcopy.c:479: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/virtcopy.c:569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/virtcopy.c:610: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/virtcopy.c:687: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/setupapi/virtcopy.c:725: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shdocvw/classinfo.c:79: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/client.c:409: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shdocvw/client.c:422: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shdocvw/factory.c:238: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shdocvw/iexplore.c:146: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shdocvw/iexplore.c:148: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shdocvw/navigate.c:367: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/navigate.c:412: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/navigate.c:454: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/shdocvw.h:272: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/shdocvw.h:290: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shdocvw/shdocvw.h:293: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shdocvw/tests/intshcut.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shdocvw/tests/intshcut.c:78: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shdocvw/tests/webbrowser.c:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shdocvw/tests/webbrowser.c:131: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shdocvw/tests/webbrowser.c:133: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shdocvw/tests/webbrowser.c:955: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/tests/webbrowser.c:959: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shdocvw/tests/webbrowser.c:2046: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/brsfolder.c:780: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/brsfolder.c:782: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/brsfolder.c:889: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/brsfolder.c:896: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/brsfolder.c:898: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/classes.c:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/classes.c:212: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/classes.c:213: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/classes.c:250: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/classes.c:251: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/classes.c:300: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/classes.c:451: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/clipboard.c:139: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/clipboard.c:146: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/clipboard.c:175: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/clipboard.c:198: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/clipboard.c:230: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/control.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/control.c:137: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/control.c:138: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/control.c:141: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/control.c:146: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/control.c:150: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/control.c:821: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/control.c:823: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/cpanelfolder.c:269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/cpanelfolder.c:309: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/cpanelfolder.c:310: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/cpanelfolder.c:314: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/cpanelfolder.c:345: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/cpanelfolder.c:346: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/cpanelfolder.c:374: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/cpanelfolder.c:426: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/cpanelfolder.c:936: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/cpanelfolder.c:1000: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/cpanelfolder.c:1006: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/cpanelfolder.c:1069: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/dataobject.c:186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/dataobject.c:288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/debughlp.c:250: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/debughlp.c:284: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/debughlp.c:301: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/debughlp.c:329: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/debughlp.c:337: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/debughlp.c:421: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/dialogs.c:171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/dialogs.c:396: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/dialogs.c:398: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/dialogs.c:400: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/folders.c:233: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/folders.c:345: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/folders.c:489: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/folders.c:495: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:642: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:644: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:686: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:693: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:709: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:721: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:792: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:797: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:833: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/iconcache.c:838: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:237: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:265: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:384: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:469: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:483: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:484: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:544: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:545: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:598: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:599: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:690: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:691: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:1057: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:1059: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:1186: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:1191: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:1486: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:1516: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:1522: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/pidl.c:1565: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/pidl.c:1585: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/pidl.c:1740: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:1851: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/pidl.c:2182: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:2230: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/pidl.c:2240: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/regsvr.c:278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/regsvr.c:279: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/regsvr.c:287: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/regsvr.c:293: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/shell.c:150: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shell.c:377: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shell.c:383: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shell.c:391: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shell.c:590: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shell32_main.c:242: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shell32_main.c:305: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shell32_main.c:461: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shell32_main.c:464: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:681: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:683: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:748: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:753: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:994: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:1004: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:1065: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:1067: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:1071: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.c:1073: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.h:208: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shell32_main.h:210: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:206: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:210: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:588: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:595: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:617: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shelllink.c:662: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:675: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:677: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shelllink.c:2080: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shelllink.c:2113: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shellole.c:263: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellole.c:647: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellord.c:414: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shellord.c:991: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellord.c:1487: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shellpath.c:1356: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shellpath.c:1706: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellpath.c:1712: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellpath.c:2132: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shellpath.c:2133: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shellpath.c:2134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shellstring.c:103: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellstring.c:108: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellstring.c:148: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellstring.c:175: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shellstring.c:248: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr.h:53: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/shfldr_fs.c:1275: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_fs.c:1406: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_fs.c:1476: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_fs.c:1483: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_fs.c:1491: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_mycomp.c:852: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:258: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr_unixfs.c:264: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr_unixfs.c:310: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr_unixfs.c:316: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr_unixfs.c:386: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:445: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_unixfs.c:531: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_unixfs.c:569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:598: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_unixfs.c:1065: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1155: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr_unixfs.c:1158: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shfldr_unixfs.c:1203: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1228: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_unixfs.c:1232: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shfldr_unixfs.c:1353: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1470: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1541: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1748: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1765: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1766: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1799: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1853: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1881: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1922: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:1940: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shfldr_unixfs.c:2241: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlexec.c:403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlexec.c:792: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlexec.c:1425: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlexec.c:1496: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlexec.c:1505: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlexec.c:1696: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlexec.c:1857: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/shlfileop.c:318: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlfileop.c:326: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlfileop.c:833: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlfileop.c:836: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlfileop.c:1593: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlfileop.c:1597: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/shlfileop.c:1630: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlfileop.c:1634: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/shlfileop.c:1688: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlfileop.c:1689: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/shlfileop.c:1711: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlfolder.c:464: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlfolder.c:499: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlfolder.c:500: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlmenu.c:399: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlmenu.c:401: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/shlview.c:451: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shlview.c:1133: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/shpolicy.c:825: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/shv_item_cmenu.c:475: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/shv_item_cmenu.c:486: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/systray.c:73: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/systray.c:83: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/systray.c:84: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/systray.c:121: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/systray.c:164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/systray.c:166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/systray.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/tests/shelllink.c:87: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shelllink.c:89: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shelllink.c:107: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:108: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:121: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:130: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:136: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:145: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:151: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:159: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:169: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:176: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:186: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:212: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:244: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:253: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:274: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:402: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:429: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:438: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:447: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:474: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shelllink.c:500: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:504: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:505: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:506: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shelllink.c:520: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shelllink.c:596: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shellpath.c:205: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:270: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/tests/shellpath.c:277: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:281: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/tests/shellpath.c:335: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:352: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:447: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:459: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:516: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:665: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:686: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:714: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:715: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:732: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:784: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:816: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:837: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/tests/shellpath.c:845: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shellpath.c:882: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:53: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:86: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:90: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:95: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:97: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:99: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:101: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:140: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:142: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:144: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:146: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:207: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:303: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:316: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:408: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:421: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/tests/shlexec.c:436: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:457: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:497: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:511: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:519: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/tests/shlexec.c:673: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:698: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:783: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:788: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shell32/tests/shlexec.c:835: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:836: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:849: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:857: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:973: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:974: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1071: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1072: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1096: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1097: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1098: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1231: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1235: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1381: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1385: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1483: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1485: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlexec.c:1515: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlexec.c:1544: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlexec.c:1558: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlexec.c:1587: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfileop.c:161: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfileop.c:210: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlfileop.c:218: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlfileop.c:227: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlfileop.c:233: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlfileop.c:247: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlfileop.c:253: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/tests/shlfileop.c:489: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/tests/shlfileop.c:588: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/tests/shlfileop.c:1210: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/tests/shlfolder.c:94: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlfolder.c:103: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlfolder.c:259: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfolder.c:305: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlfolder.c:360: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfolder.c:665: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfolder.c:742: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlfolder.c:929: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfolder.c:945: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/shlfolder.c:1388: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfolder.c:1389: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/shlfolder.c:1390: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/tests/string.c:39: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/string.c:41: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/tests/string.c:83: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/trash.c:174: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/trash.c:181: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/shell32/trash.c:341: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shell32/trash.c:415: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/shell32/trash.c:453: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shell32/xdg.c:104: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/xdg.c:761: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/xdg.c:770: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shell32/xdg.c:892: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shell32/xdg.c:912: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/shlwapi/assoc.c:98: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/assoc.c:112: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/clist.c:133: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/istream.c:209: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/istream.c:317: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/istream.c:525: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/msgbox.c:151: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/msgbox.c:155: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/msgbox.c:262: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/msgbox.c:266: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/msgbox.c:268: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/msgbox.c:271: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/ordinal.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/ordinal.c:334: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/ordinal.c:502: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/ordinal.c:564: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/ordinal.c:569: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shlwapi/ordinal.c:578: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/ordinal.c:613: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/ordinal.c:2165: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/ordinal.c:2177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/ordinal.c:2308: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/ordinal.c:2310: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/ordinal.c:2650: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:149: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:151: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:1146: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:1259: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:1269: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:1389: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:1430: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/path.c:1450: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/path.c:1480: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/path.c:1487: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/path.c:2004: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/path.c:2352: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:2719: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/path.c:2774: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/path.c:2803: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:3033: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:3383: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:3384: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:3532: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:3736: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/path.c:3985: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/reg.c:112: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/reg.c:922: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/reg.c:1065: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/reg.c:1508: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/reg.c:1973: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/reg.c:1974: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/reg.c:1996: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/reg.c:1997: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/reg.c:2026: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/reg.c:2091: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/reg.c:2145: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/reg.c:2230: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/reg.c:2391: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/reg.c:2414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/regstream.c:502: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/string.c:159: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/string.c:919: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/string.c:944: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/string.c:1389: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/string.c:1396: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/string.c:1487: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/string.c:1492: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/string.c:1784: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/string.c:1792: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/string.c:1848: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/string.c:2445: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/clist.c:538: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/clist.c:556: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/clsid.c:105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/clsid.c:153: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/istream.c:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/istream.c:84: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/istream.c:92: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/istream.c:100: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/istream.c:108: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/istream.c:200: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/istream.c:305: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/istream.c:404: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/ordinal.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:111: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/path.c:126: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/tests/path.c:185: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:335: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:341: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:346: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:351: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:434: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:435: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:436: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:617: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:618: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:678: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:679: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:680: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:683: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:722: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:730: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:738: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:746: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:754: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:762: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:779: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:802: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:803: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:807: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:817: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:840: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:848: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:856: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:864: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:872: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:881: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:889: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:900: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:910: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:925: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:926: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:943: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:951: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:960: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:979: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:991: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:992: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:998: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shlwapi/tests/path.c:1004: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1013: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1021: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1029: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1044: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:1045: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/path.c:1050: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1051: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1063: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1064: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1077: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1078: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1089: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1090: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1100: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1101: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1110: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1111: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1112: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1122: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1123: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1124: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1134: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1135: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1136: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1146: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1147: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1148: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1158: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1159: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1160: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1170: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1171: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1172: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1182: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1183: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1184: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1194: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1195: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1196: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1206: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1207: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1208: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1218: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1219: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1220: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1230: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1231: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1232: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1242: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1243: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/path.c:1244: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/shreg.c:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/shreg.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/shreg.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/shreg.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/shreg.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:245: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:299: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:370: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/string.c:401: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/string.c:451: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/string.c:465: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/string.c:504: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:528: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:550: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:572: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:641: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/string.c:643: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/string.c:680: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/shlwapi/tests/string.c:694: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:723: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/tests/string.c:771: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:801: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/tests/string.c:903: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/string.c:904: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/url.c:295: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/url.c:358: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/url.c:396: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/url.c:397: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/url.c:745: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/url.c:830: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/tests/url.c:865: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/tests/url.c:878: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/thread.c:210: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/thread.c:410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/thread.c:441: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/thread.c:461: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/url.c:97: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/url.c:193: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:284: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:361: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:402: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:447: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:454: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:521: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:573: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:574: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:785: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:795: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:806: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:1105: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:1176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/url.c:1177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:1246: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:1478: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/shlwapi/url.c:1523: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:1557: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:2043: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:2132: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:2134: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:2140: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:2332: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:2335: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/shlwapi/url.c:2370: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:2389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/url.c:2395: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/wsprintf.c:250: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shlwapi/wsprintf.c:253: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/shlwapi/wsprintf.c:342: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/wsprintf.c:370: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/shlwapi/wsprintf.c:453: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/snmpapi/main.c:57: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/snmpapi/main.c:292: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/snmpapi/main.c:485: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/snmpapi/main.c:495: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/snmpapi/tests/util.c:365: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/tapi32/assisted.c:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/tapi32/assisted.c:55: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/tapi32/line.c:667: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/binding.c:372: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/binding.c:645: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/binding.c:1138: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/binding.c:1414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/format.c:100: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/format.c:164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/http.c:228: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/http.c:383: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/internet.c:45: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/mk.c:141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/mk.c:157: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/regsvr.c:543: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/urlmon/sec_mgr.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/sec_mgr.c:423: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/session.c:81: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/session.c:82: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/misc.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/misc.c:829: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/protocol.c:147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/protocol.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/protocol.c:158: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/urlmon/tests/protocol.c:257: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:671: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:683: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:851: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:1430: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:1434: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:1442: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:1445: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:1456: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/protocol.c:1460: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/stream.c:269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/stream.c:274: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/stream.c:298: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/url.c:189: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/url.c:196: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/tests/url.c:198: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/urlmon/tests/url.c:824: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/url.c:945: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/url.c:2419: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/url.c:2424: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/url.c:2426: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/tests/url.c:2523: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/umon.c:514: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/umon.c:552: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/umon.c:555: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/umon.c:560: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/umon.c:570: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/umon.c:681: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/urlmon/umon.c:1216: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/umon.c:1218: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/umstream.c:49: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/umstream.c:584: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/umstream.c:591: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/umstream.c:636: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/umstream.c:640: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/urlmon_main.c:410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/urlmon_main.c:593: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/urlmon_main.c:676: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/urlmon_main.c:704: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/urlmon_main.c:732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/urlmon_main.h:108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/urlmon/urlmon_main.h:119: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/urlmon/urlmon_main.h:121: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/bidi16.c:179: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/class.c:159: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:162: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:206: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/class.c:208: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/class.c:209: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:228: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:537: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/class.c:612: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/class.c:661: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:668: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:736: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:755: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:759: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:852: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:856: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:857: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:888: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:889: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:894: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:895: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:1018: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/class.c:1115: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/clipboard.c:243: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/clipboard.c:245: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/combo.c:1829: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/comm16.c:718: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/comm16.c:765: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/comm16.c:1013: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/comm16.c:1065: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:719: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:1047: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:1315: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:1316: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:1317: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:1947: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:2240: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:2245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/cursoricon.c:2318: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/cursoricon.c:2320: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/cursoricon.c:2464: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_client.c:584: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/dde_client.c:599: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_client.c:609: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/dde_client.c:739: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_client.c:1297: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/dde_misc.c:1311: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_misc.c:1344: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_misc.c:1391: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_misc.c:1494: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_misc.c:1565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_misc.c:1582: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_misc.c:2177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/dde_server.c:410: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/ddeml16.c:414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/defwnd.c:90: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/defwnd.c:97: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/defwnd.c:888: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/desktop.c:190: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/desktop.c:228: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/dialog.c:1323: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/dialog.c:1325: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/dialog.c:1326: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/dialog.c:1338: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/dialog.c:1826: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/dialog.c:1828: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/dialog16.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/dialog16.c:90: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/dialog16.c:91: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/dialog16.c:92: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/dialog16.c:93: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/dialog16.c:94: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/dialog16.c:95: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/driver.c:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/driver.c:44: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/driver16.c:44: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/driver16.c:63: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/driver16.c:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/edit.c:628: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:630: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:694: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:832: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:833: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:847: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:906: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:908: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:1741: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:1764: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:2844: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:2849: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:3236: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:3301: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:3314: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:3554: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:3561: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:3626: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:3633: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:3875: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:4202: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/edit.c:5103: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/edit.c:5106: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/exticon.c:226: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/exticon.c:739: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/exticon.c:742: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/exticon.c:816: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/exticon.c:821: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/hook.c:97: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/input.c:553: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/input.c:574: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:788: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/listbox.c:2658: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2660: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2682: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2684: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2704: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2706: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2881: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2883: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2904: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2906: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2931: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:2933: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:3035: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:3037: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/listbox.c:3237: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:154: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:201: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:214: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:311: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:317: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:348: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:354: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:381: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:402: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:423: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/lstr.c:444: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/mdi.c:583: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/mdi.c:585: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/mdi.c:1321: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/mdi.c:1323: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:2131: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:2132: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:3783: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:3787: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:3896: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:3900: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:4531: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4536: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4553: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4557: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4575: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:4577: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/menu.c:4687: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4711: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4827: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:4854: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/menu.c:5277: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/message.c:390: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/message.c:1142: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1149: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1152: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1155: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1159: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1162: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1165: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1175: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1179: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1182: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1192: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1201: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1205: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1220: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1226: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1543: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1566: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:1586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/message.c:2122: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/misc.c:325: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/misc.c:326: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/msgbox.c:103: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/msgbox.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/msgbox.c:373: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/network.c:188: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/nonclient.c:276: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/nonclient.c:279: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/property.c:123: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/property.c:155: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/property.c:188: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/property.c:225: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/property.c:267: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/resource.c:125: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/resource.c:128: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/resource.c:275: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/resource.c:341: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/resource.c:398: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/spy.c:64: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:732: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:879: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:951: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:977: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:1045: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:1065: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:1080: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:1095: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:1964: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:2143: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/spy.c:2145: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/spy.c:2547: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/spy.c:2550: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/spy.c:2551: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/spy.c:2654: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/sysparams.c:275: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/sysparams.c:404: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/sysparams.c:442: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/sysparams.c:920: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/sysparams.c:993: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/sysparams.c:2471: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/sysparams.c:2949: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/sysparams.c:2950: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/tests/class.c:316: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/clipboard.c:100: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/combo.c:178: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:145: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:661: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:668: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:690: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:701: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:710: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:722: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/cursoricon.c:724: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/dde.c:79: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dde.c:262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dde.c:558: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dde.c:797: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dde.c:1275: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dde.c:1427: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dde.c:2123: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dialog.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dialog.c:181: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/dialog.c:892: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/dialog.c:895: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/edit.c:724: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/edit.c:761: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/edit.c:765: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/dlls/user32/tests/edit.c:1322: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/edit.c:1539: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/edit.c:1587: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/edit.c:1643: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/edit.c:1710: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/input.c:211: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/input.c:853: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/input.c:857: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:40: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/listbox.c:564: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/listbox.c:612: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:669: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:773: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:849: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:911: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:959: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:1058: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/listbox.c:1059: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/listbox.c:1060: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/listbox.c:1091: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:1128: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:1176: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:1218: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:1265: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/listbox.c:1292: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:158: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:404: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:554: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:555: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:557: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:585: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:594: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:644: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:828: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:1327: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:1328: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:1339: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:1381: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:1422: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:1448: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/menu.c:2163: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/menu.c:2227: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/monitor.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/monitor.c:75: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:6043: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:7134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:7166: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:7598: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:7625: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:9876: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:9883: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:10352: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/msg.c:10356: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/tests/resource.c:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/resource.c:63: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/tests/resource.c:84: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:360: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:423: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/tests/sysparams.c:506: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:523: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:550: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:767: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:773: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:853: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:859: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:928: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:934: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:1114: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:1148: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1167: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:1180: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1191: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1200: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1208: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:1647: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/sysparams.c:1649: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/sysparams.c:2027: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2033: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:2066: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2072: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:2109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2115: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:2147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2153: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:2185: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2191: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:2223: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2229: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/tests/sysparams.c:2246: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/sysparams.c:2247: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/text.c:202: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/win.c:829: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/win.c:4670: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/win.c:4765: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/winstation.c:31: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/winstation.c:34: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/winstation.c:39: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/tests/winstation.c:111: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/tests/wsprintf.c:29: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/text.c:166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/text.c:181: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/text.c:256: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/text.c:286: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/text.c:912: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/text.c:1008: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/text.c:1044: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/text.c:1055: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/text.c:1331: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/text.c:1334: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/text.c:1384: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/text.c:1387: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/user16.c:64: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/user16.c:671: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/user16.c:1721: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/user16.c:1794: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/user32/user16.c:1854: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/user_main.c:197: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:54: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:60: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:66: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:77: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:82: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:86: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/win.c:1314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/win.c:1338: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/win.c:1382: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/win.c:1642: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/win.c:1644: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/win.c:1650: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/winhelp.c:151: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winproc.c:539: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winproc.c:733: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winproc.c:750: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winproc.c:827: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winproc.c:1037: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1084: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1128: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1144: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1149: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winproc.c:1183: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1239: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1557: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winproc.c:1954: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winstation.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/user32/winstation.c:67: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/winstation.c:115: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/winstation.c:258: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/winstation.c:311: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/user32/winstation.c:545: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/winstation.c:571: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/wsprintf.c:260: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/wsprintf.c:263: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/user32/wsprintf.c:347: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/wsprintf.c:369: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/wsprintf.c:443: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/wsprintf.c:471: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/user32/wsprintf.c:552: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/userenv/tests/userenv.c:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/userenv/tests/userenv.c:67: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/userenv/tests/userenv.c:95: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/userenv/tests/userenv.c:131: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/userenv/tests/userenv.c:147: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/usp10/usp10.c:745: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/uxtheme/draw.c:620: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/uxtheme/draw.c:623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/uxtheme/system.c:275: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/uxtheme/system.c:287: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/uxtheme/system.c:366: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/info.c:295: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/version/info.c:320: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/info.c:339: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/version/info.c:432: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/version/info.c:602: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/version/info.c:785: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/version/info.c:791: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/version/info.c:861: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/version/install.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/install.c:71: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/version/install.c:103: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/version/install.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/install.c:365: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/install.c:368: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/install.c:376: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/install.c:398: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/install.c:399: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/install.c:494: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/install.c:511: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/install.c:535: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/install.c:575: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/version/install.c:575: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/dlls/version/resource.c:110: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/version/resource.c:117: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/version/resource.c:147: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/info.c:63: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/info.c:197: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/version/tests/info.c:209: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/info.c:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/info.c:453: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/info.c:524: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/version/tests/install.c:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/install.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/install.c:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/install.c:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/version/tests/install.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/vmm.vxd/vmm.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/vnbt.vxd/vnbt.c:55: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/vnbt.vxd/vnbt.c:95: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/alsa.c:248: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/alsa.c:262: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/alsa.c:268: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/alsa.c:310: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/alsa.c:316: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/alsa.c:326: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/alsa.c:395: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/alsa.h:113: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/dscapture.c:242: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/dscapture.c:291: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/dscapture.c:295: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/dscapture.c:297: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/midi.c:69: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/midi.c:385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/midi.c:433: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/midi.c:705: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/midi.c:996: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/midi.c:1002: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/midi.c:1118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/midi.c:1161: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/midi.c:1226: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/mixer.c:80: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/mixer.c:98: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/mixer.c:338: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/mixer.c:357: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/mixer.c:378: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/mixer.c:389: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/mixer.c:416: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/mixer.c:445: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/mixer.c:806: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/mixer.c:1471: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/wavein.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/wavein.c:722: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/wavein.c:732: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/wavein.c:735: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/waveinit.c:78: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:87: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveinit.c:407: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winealsa.drv/waveinit.c:408: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/waveinit.c:412: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winealsa.drv/waveinit.c:414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/waveinit.c:493: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/waveinit.c:533: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/waveinit.c:631: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:709: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:718: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveinit.c:738: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:739: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:740: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:744: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveinit.c:745: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveinit.c:746: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveinit.c:999: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winealsa.drv/waveinit.c:1001: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveinit.c:1004: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winealsa.drv/waveout.c:557: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winealsa.drv/waveout.c:1134: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/waveout.c:1144: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winealsa.drv/waveout.c:1147: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineaudioio.drv/audio.c:778: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineaudioio.drv/audio.c:843: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineaudioio.drv/audio.c:1164: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineaudioio.drv/audio.c:1474: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineaudioio.drv/audio.c:1475: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineaudioio.drv/audio.c:1651: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineaudioio.drv/audio.c:1652: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineaudioio.drv/audio.c:1674: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineaudioio.drv/audio.c:1781: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineaudioio.drv/audio.c:1848: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineaudioio.drv/audio.c:1958: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineaudioio.drv/audio.c:2186: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineaudioio.drv/audio.c:2187: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winecoreaudio.drv/audio.c:108: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/audio.c:109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/audio.c:149: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/audio.c:183: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/audio.c:253: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/audio.c:295: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winecoreaudio.drv/audio.c:441: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/audio.c:453: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:454: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winecoreaudio.drv/audio.c:455: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:458: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:554: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:606: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:761: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:871: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:1419: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:1430: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:1433: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:1576: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:1718: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:1850: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:1900: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:2241: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:2252: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:2255: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/audio.c:2389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/audio.c:2410: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/coremidi.c:69: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/midi.c:150: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/midi.c:166: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/midi.c:184: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/midi.c:519: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/midi.c:765: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/mixer.c:95: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/mixer.c:112: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winecoreaudio.drv/mixer.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/mixer.c:154: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winecoreaudio.drv/mixer.c:160: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/mixer.c:185: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winecoreaudio.drv/mixer.c:191: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/mixer.c:202: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winecoreaudio.drv/mixer.c:357: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winecoreaudio.drv/mixer.c:385: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/mixer.c:427: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/mixer.c:576: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winecoreaudio.drv/mixer.c:681: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/mixer.c:682: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winecoreaudio.drv/mixer.c:694: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wined3d/arb_program_shader.c:464: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:468: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:470: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:475: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:477: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:481: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:485: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:489: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:493: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:496: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:499: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:503: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:518: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:522: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:529: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:537: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:543: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:545: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:549: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:551: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:557: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:566: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:568: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:572: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:577: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:582: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:586: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:800: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:801: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:857: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:872: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:873: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:947: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:948: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:949: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:985: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:986: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:987: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1018: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1019: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1020: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1046: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1047: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1048: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1078: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1081: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1082: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1108: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1121: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:1125: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:1128: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:1141: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1172: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1232: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1239: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1254: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1255: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1257: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1270: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1271: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1273: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1284: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1287: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1302: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1367: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1380: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1381: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1383: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1396: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1411: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1412: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1418: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1432: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1433: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1454: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1469: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1470: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1491: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1499: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1529: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1530: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1536: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:1543: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1544: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1545: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1563: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1564: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1565: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1586: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1658: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1668: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/arb_program_shader.c:1676: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1677: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1678: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1702: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1703: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1704: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:1731: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:2626: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/arb_program_shader.c:2801: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/arb_program_shader.c:2921: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/ati_fragment_shader.c:821: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/baseshader.c:292: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/baseshader.c:315: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/baseshader.c:324: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/baseshader.c:614: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/context.c:92: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3509: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3537: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3556: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3585: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3605: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3645: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3679: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3938: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3966: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:3985: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:4014: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:4034: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:4074: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:4108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:4112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:4151: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:5423: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/device.c:6906: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/directx.c:660: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/directx.c:751: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/directx.c:764: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/directx.c:1395: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/directx.c:1408: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/directx.c:1661: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/drawprim.c:984: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/drawprim.c:1027: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/drawprim.c:1029: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/drawprim.c:1040: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:47: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:48: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:320: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:841: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:847: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:884: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:886: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:888: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:893: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/glsl_shader.c:895: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/glsl_shader.c:900: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:922: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:924: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:930: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:932: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:940: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:942: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:946: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:948: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:952: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:954: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:958: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:962: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:964: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:971: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:973: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:980: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:984: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:986: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:992: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:994: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:999: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:1004: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:1007: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:1012: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:1076: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:1491: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:1550: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:1580: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/glsl_shader.c:1605: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:1719: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:1930: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:1975: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2172: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2244: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2270: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2308: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2319: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2354: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2477: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2494: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2520: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2542: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2577: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2610: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2617: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2636: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2680: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2694: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2707: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2778: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2865: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2866: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:2890: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:2892: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:2894: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:2987: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:2989: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:2991: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:3019: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:3165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:3194: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:3222: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:3292: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/glsl_shader.c:3293: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:3295: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/glsl_shader.c:3297: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wined3d/palette.c:103: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/palette.c:124: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/pixelshader.c:95: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/pixelshader.c:378: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/resource.c:156: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/resource.c:193: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/state.c:4384: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:85: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:86: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:87: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:88: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:89: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:90: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:91: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:92: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:93: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:94: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:95: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:96: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:99: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:100: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:195: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:197: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:198: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:200: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:201: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:202: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:203: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:204: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:205: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:206: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:207: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:208: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:209: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:210: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:211: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:215: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:554: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:602: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:603: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:604: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:605: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:606: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:607: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:608: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:610: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:612: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:616: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:617: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:618: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:619: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:620: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:621: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:622: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:649: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:650: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:651: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:679: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:680: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:681: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:1049: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:1050: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:1052: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/stateblock.c:1196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:220: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:813: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:814: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:815: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:1422: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:1482: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:1727: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:2218: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface.c:2301: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/surface.c:2457: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wined3d/surface_base.c:660: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:849: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:1093: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:1201: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:1214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:1230: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:1248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_base.c:1643: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/surface_gdi.c:178: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/surface_gdi.c:300: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wined3d/surface_gdi.c:308: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/swapchain.c:332: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/swapchain.c:339: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/swapchain.c:387: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/utils.c:457: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/utils.c:569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/utils.c:1188: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/utils.c:1396: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/utils.c:1791: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/vertexbuffer.c:648: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/vertexdeclaration.c:115: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/vertexdeclaration.c:126: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/vertexdeclaration.c:143: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/vertexshader.c:252: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/vertexshader.c:411: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/vertexshader.c:472: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/vertexshader.c:512: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/wined3d_main.c:91: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_main.c:144: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wined3d/wined3d_private.h:353: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wined3d/wined3d_private.h:1949: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_private.h:1950: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_private.h:1951: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_private.h:1952: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_private.h:1953: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_private.h:1954: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wined3d/wined3d_private.h:1955: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/devices.c:302: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/devices.c:429: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/devices.c:488: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/devices.c:520: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/devices.c:541: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dma.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dma.c:128: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dosaspi.c:43: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dosaspi.c:48: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dosaspi.c:153: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dosaspi.c:159: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dosconf.c:397: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/dosconf.c:470: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winedos/dosexe.h:274: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/dosexe.h:341: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/dosmem.c:213: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/dosmem.c:515: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/himem.c:224: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/himem.c:231: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/himem.c:240: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/himem.c:286: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int10.c:71: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int10.c:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int10.c:73: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int10.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int10.c:714: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winedos/int10.c:715: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winedos/int10.c:716: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winedos/int10.c:717: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winedos/int21.c:177: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int21.c:186: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int21.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int21.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int21.c:523: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:690: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int21.c:819: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:857: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:865: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:866: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:1083: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:1242: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int21.c:1261: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1555: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1628: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1706: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1745: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1797: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1830: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:1855: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2036: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2052: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2060: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2078: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2102: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2129: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2153: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:2603: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:2989: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3073: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3086: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3111: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3179: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3192: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3228: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3364: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3365: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3428: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:3430: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:3682: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winedos/int21.c:3814: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:3839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:3840: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int21.c:3861: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:4088: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:4090: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:4733: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:4853: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int21.c:5222: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winedos/int2f.c:444: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winedos/int2f.c:450: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winedos/int2f.c:455: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winedos/int31.c:278: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int31.c:485: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int67.c:61: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/int67.c:155: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int67.c:161: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int67.c:193: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/int67.c:207: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/interrupts.c:766: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/interrupts.c:769: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winedos/interrupts.c:777: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winedos/ioports.c:103: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/ioports.c:256: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/module.c:175: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/module.c:361: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/module.c:486: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/ppdev.c:77: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/ppdev.c:78: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/ppdev.c:109: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/ppdev.c:132: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winedos/soundblaster.c:104: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/soundblaster.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/vga.c:168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/vga.c:567: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/vga.c:581: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/vga.c:1011: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/vga.c:1053: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winedos/vxd.c:1120: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/vxd.c:1168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winedos/xms.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineesd.drv/audio.c:163: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineesd.drv/audio.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineesd.drv/audio.c:375: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineesd.drv/audio.c:377: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineesd.drv/audio.c:379: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineesd.drv/audio.c:1176: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineesd.drv/audio.c:1524: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineesd.drv/audio.c:1534: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineesd.drv/audio.c:1537: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineesd.drv/audio.c:1610: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineesd.drv/audio.c:1620: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineesd.drv/audio.c:1623: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineesd.drv/audio.c:1670: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineesd.drv/audio.c:2105: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineesd.drv/audio.c:2106: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winejack.drv/audio.c:132: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winejack.drv/audio.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winejack.drv/audio.c:425: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winejack.drv/audio.c:607: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winejack.drv/audio.c:932: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:966: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:1231: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winejack.drv/audio.c:1313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winejack.drv/audio.c:1637: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:1647: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:1650: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:1741: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winejack.drv/audio.c:1742: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winejack.drv/audio.c:1871: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winejack.drv/audio.c:2036: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winejack.drv/audio.c:2116: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winejack.drv/audio.c:2334: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:2344: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejack.drv/audio.c:2347: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winejoystick.drv/joystick.c:167: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winejoystick.drv/joystick.c:179: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winejoystick.drv/joystick.c:182: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winejoystick.drv/joystick.c:196: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winejoystick.drv/joystick.c:215: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winemp3.acm/common.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winemp3.acm/common.c:177: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winemp3.acm/common.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winemp3.acm/common.c:194: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winemp3.acm/interface.c:86: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winemp3.acm/interface.c:207: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winemp3.acm/interface.c:248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winemp3.acm/layer3.c:474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winemp3.acm/layer3.c:564: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winemp3.acm/mpegl3.c:206: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winemp3.acm/mpegl3.c:208: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winemp3.acm/mpegl3.c:210: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winemp3.acm/mpegl3.c:212: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winemp3.acm/mpglib.h:40: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winenas.drv/audio.c:156: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winenas.drv/audio.c:888: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winenas.drv/audio.c:914: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winenas.drv/audio.c:945: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winenas.drv/audio.c:1261: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winenas.drv/audio.c:1262: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winenas.drv/audio.c:1385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winenas.drv/audio.c:1394: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winenas.drv/audio.c:1419: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winenas.drv/audio.c:1421: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:110: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/audio.c:124: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/audio.c:136: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/audio.c:178: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/audio.c:186: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:193: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:196: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:208: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:215: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:218: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:308: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:332: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:716: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:721: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineoss.drv/audio.c:722: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:738: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:742: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineoss.drv/audio.c:743: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:890: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:894: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:909: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:912: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/audio.c:1030: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:1046: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:1175: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/audio.c:1177: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/audio.c:1948: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:1950: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:2331: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:2386: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/audio.c:2496: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:2642: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/audio.c:2733: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/dscapture.c:336: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/dscapture.c:856: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/dscapture.c:856: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/dscapture.c:1141: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/dscapture.c:1307: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/dsrender.c:321: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/midi.c:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/midi.c:242: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/midi.c:316: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/midi.c:347: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/midi.c:460: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/midi.c:648: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/midi.c:714: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/midi.c:1006: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/midi.c:1007: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/midi.c:1023: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/midi.c:1032: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/midi.c:1090: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/midipatch.c:29: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/midipatch.c:160: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:82: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:83: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:116: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:133: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:175: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:181: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:217: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:223: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:248: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:254: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:265: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:380: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mixer.c:513: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mixer.c:539: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mixer.c:567: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mixer.c:591: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mixer.c:628: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:632: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineoss.drv/mixer.c:668: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:669: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:699: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:700: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:932: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:1239: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineoss.drv/mixer.c:1455: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineoss.drv/mixer.c:1458: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:1460: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineoss.drv/mixer.c:1462: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mmaux.c:57: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mmaux.c:85: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mmaux.c:115: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineoss.drv/mmaux.c:175: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/afm2c.c:188: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/afm2c.c:202: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/bitmap.c:281: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/bitmap.c:296: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/bitmap.c:309: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/builtin.c:174: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/builtin.c:176: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/builtin.c:178: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/builtin.c:180: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/builtin.c:261: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/builtin.c:397: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wineps.drv/builtin.c:414: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/download.c:91: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/download.c:270: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/download.c:288: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/download.c:302: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/download.c:341: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/driver.c:403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/escape.c:150: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/font.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/font.c:59: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/font.c:62: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/font.c:65: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/font.c:68: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/font.c:76: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/font.c:79: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wineps.drv/graphics.c:130: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/graphics.c:131: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/graphics.c:345: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/graphics.c:391: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/init.c:279: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/init.c:282: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/init.c:286: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/init.c:290: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/init.c:596: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/mkagl.c:118: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/mkagl.c:119: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/mkagl.c:186: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/mkagl.c:193: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/mkagl.c:252: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/mkagl.c:490: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/mkagl.c:497: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/ppd.c:247: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:265: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ppd.c:276: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:333: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:363: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ppd.c:403: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:415: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:429: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:505: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ppd.c:621: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/ps.c:280: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/ps.c:352: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:353: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/ps.c:436: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:439: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/ps.c:480: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:488: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:505: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:514: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:523: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:555: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:582: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:600: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:666: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:676: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:677: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/ps.c:694: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/ps.c:762: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:784: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/ps.c:813: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:821: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:829: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:837: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:845: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/ps.c:869: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/ps.c:924: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/psdrv.h:405: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/type1.c:287: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/type1afm.c:1105: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wineps.drv/type42.c:170: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wineps.drv/type42.c:241: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/type42.c:266: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/type42.c:322: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wineps.drv/type42.c:353: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wineps.drv/type42.c:358: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/bitblt.c:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/bitblt.c:771: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:866: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:1200: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:1206: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:1254: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:1261: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:1389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:1434: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:1651: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:1795: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:1797: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/clipboard.c:2060: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:2104: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:2140: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:2544: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/clipboard.c:2577: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib.c:4007: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_convert.c:82: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_convert.c:87: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_convert.c:578: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_convert.c:583: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_convert.c:1030: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_convert.c:1035: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:626: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:686: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:746: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:805: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:864: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:916: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:973: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:1028: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/dib_src_swap.c:1083: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/graphics.c:1497: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/graphics.c:1509: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/graphics.c:1555: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/graphics.c:1565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/ime.c:184: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/ime.c:316: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/ime.c:452: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/keyboard.c:246: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:256: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:266: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:276: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:295: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:305: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:315: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:325: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:335: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:344: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:354: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:364: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:374: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:384: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:394: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:404: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:414: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:424: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:434: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:444: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:454: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:464: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:485: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:495: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:504: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:514: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:524: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:534: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:544: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:555: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:565: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:575: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:585: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:595: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:605: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:615: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:625: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:635: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:645: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:655: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:665: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:674: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:684: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:694: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:703: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:712: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:723: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:733: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:743: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:753: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:763: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:773: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:783: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:793: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:802: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:812: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:822: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:832: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:842: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:854: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:864: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:887: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:894: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:910: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1355: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1477: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1546: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1586: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1587: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1588: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:1640: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:2165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:2206: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/keyboard.c:2304: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/keyboard.c:2422: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/keyboard.c:2570: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/keyboard.c:2659: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/opengl.c:94: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/opengl.c:359: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/palette.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/pen.c:88: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/pen.c:93: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/pen.c:98: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/pen.c:103: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/pen.c:108: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/settings.c:179: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/settings.c:192: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/settings.c:234: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/settings.c:277: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/settings.c:327: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/settings.c:338: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/systray.c:221: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/systray.c:222: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/wintab.c:595: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/wintab.c:620: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/wintab.c:984: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/wintab.c:1058: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/x11ddraw.c:268: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/x11ddraw.c:390: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/x11ddraw.c:393: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/x11drv.h:80: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/x11drv_main.c:105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/x11drv_main.c:114: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/x11drv_main.c:337: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/x11drv_main.c:353: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xdnd.c:336: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/xdnd.c:427: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/xdnd.c:595: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xdnd.c:628: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:843: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:858: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:871: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:873: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:951: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:954: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:966: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:977: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:1218: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xfont.c:1223: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xfont.c:1225: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xfont.c:1434: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:1632: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:1637: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:1654: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:1676: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:1794: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:1795: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:1798: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:1856: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:2001: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:2064: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:2070: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:2071: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winex11.drv/xfont.c:2290: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:2622: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:2625: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:2628: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:2632: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:2634: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:2898: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winex11.drv/xfont.c:2907: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winex11.drv/xfont.c:2917: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winex11.drv/xfont.c:2932: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winex11.drv/xfont.c:3041: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xfont.c:3268: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xfont.c:3271: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xfont.c:3317: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xim.c:166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winex11.drv/xim.c:183: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xim.c:244: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xim.c:250: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winex11.drv/xrender.c:613: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xrender.c:738: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xrender.c:754: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winex11.drv/xrender.c:1614: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wing32/wing32.c:75: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/net.c:306: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/net.c:323: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:233: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:249: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:549: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:661: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winhttp/request.c:818: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winhttp/request.c:853: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winhttp/request.c:859: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winhttp/request.c:867: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winhttp/request.c:874: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winhttp/request.c:875: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:897: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winhttp/request.c:906: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/request.c:1017: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winhttp/tests/winhttp.c:273: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winhttp/winhttp_private.h:179: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winhttp/winhttp_private.h:181: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:367: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:369: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:374: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:376: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:511: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:513: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:518: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:520: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:525: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/cookie.c:527: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/ftp.c:1047: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/ftp.c:2547: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/ftp.c:2568: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:176: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:735: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:737: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:978: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:982: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:987: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:991: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:996: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:1000: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:1005: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:1009: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:1035: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:1039: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:1119: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:1159: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:1329: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:1506: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:1654: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:1816: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:2032: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:2210: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2285: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2363: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2548: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:2557: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:2613: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:2621: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:2788: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:2835: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:2837: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:3285: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:3614: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:3723: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/http.c:3750: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:3789: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:3791: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:3804: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/http.c:3811: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:3813: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:3906: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:3918: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/http.c:4037: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:403: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:405: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:744: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:746: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:751: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:753: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:758: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:760: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:794: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:831: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:1026: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1028: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1032: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1034: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1038: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1040: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1204: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1211: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:1375: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:1429: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:2107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:2401: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2402: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2409: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2410: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2418: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2421: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2526: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2531: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2741: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2744: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2959: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2963: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2967: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:2973: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3440: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/internet.c:3442: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wininet/internet.c:3477: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3485: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3493: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3501: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3509: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3517: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.c:3627: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3642: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3652: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3659: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3668: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3679: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3690: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.c:3706: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/internet.h:75: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/internet.h:78: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/netconnection.c:555: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/netconnection.c:561: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/netconnection.c:586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/tests/http.c:252: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:498: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:759: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:790: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:989: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1112: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1121: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1129: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1135: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1226: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1232: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1238: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1246: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1252: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1258: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1266: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1272: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1278: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1286: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1292: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1297: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1304: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1309: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1314: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1321: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1326: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1331: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1338: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1343: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1348: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/tests/http.c:1400: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1403: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1428: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wininet/tests/http.c:1573: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1603: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1661: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1665: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wininet/tests/http.c:1714: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1884: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:1964: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:2021: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/http.c:2115: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/tests/url.c:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/url.c:100: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/tests/urlcache.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/urlcache.c:138: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/urlcache.c:143: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/urlcache.c:257: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/urlcache.c:303: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wininet/urlcache.c:478: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:488: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:607: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:610: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:858: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:870: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:871: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:873: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:918: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:920: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:975: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:985: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:987: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:1016: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:1028: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:1037: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:1039: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:1105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/urlcache.c:2035: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2038: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2039: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2042: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2247: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wininet/urlcache.c:2433: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/urlcache.c:2491: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2495: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2499: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2503: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2507: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2511: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2515: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2519: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2970: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:2977: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wininet/urlcache.c:3018: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/utility.c:186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/utility.c:203: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wininet/utility.c:346: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/driver.c:376: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/driver.c:379: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/driver.c:384: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/driver.c:387: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/lolvldrv.c:663: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/lolvldrv.c:664: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/lolvldrv.c:665: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/lolvldrv.c:686: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mci.c:95: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mci.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mci.c:221: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/mci.c:232: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/mci.c:234: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/mci.c:325: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mci.c:1342: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mci.c:1459: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/mci.c:1461: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/mci.c:1485: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mci.c:1493: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/mci.c:1523: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mci.c:1526: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/message16.c:512: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:556: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:932: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:991: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:1491: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:1550: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:1799: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/message16.c:1897: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:1906: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:1968: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:1973: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:2151: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:2648: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:2874: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:2883: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:2945: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:2950: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:3132: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/message16.c:3347: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/message16.c:3447: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/mmio.c:617: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mmio.c:779: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmio.c:795: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmio.c:828: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmio.c:1085: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mmsystem.c:234: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:344: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:347: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:472: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:723: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:943: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:1223: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:1523: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:1747: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/mmsystem.c:2519: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:2533: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:2588: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/mmsystem.c:2649: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/mmsystem.c:2656: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/tests/capture.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/capture.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/capture.c:47: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/capture.c:389: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mci.c:33: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mixer.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mixer.c:45: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mixer.c:52: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mixer.c:60: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mixer.c:152: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mixer.c:156: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mixer.c:163: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mixer.c:171: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/mixer.c:733: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mixer.c:734: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mixer.c:735: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mmio.c:202: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/mmio.c:359: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/timer.c:148: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/timer.c:159: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:128: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:182: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:198: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:201: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:250: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:257: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:258: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:263: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:272: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:276: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:281: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:286: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:291: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:296: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:301: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:306: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:311: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:316: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:325: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:329: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:334: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:339: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:344: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:349: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/tests/wave.c:353: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:354: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:364: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:380: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:391: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:397: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/tests/wave.c:444: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/tests/wave.c:921: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/winmm/time.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/winmm.c:138: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winmm/winmm.c:166: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/winmm/winmm.c:298: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:560: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:564: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:646: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winmm/winmm.c:760: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:857: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:935: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:1233: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:2166: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:2604: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winmm/winmm.c:2835: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:346: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:396: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/info.c:472: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/info.c:705: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/info.c:710: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winspool.drv/info.c:1617: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:1620: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1623: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1625: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:1627: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1631: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1656: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1661: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1666: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1670: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1692: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1792: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1902: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:1966: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:2016: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2222: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2224: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2229: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2231: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2234: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2236: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2239: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2241: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2402: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2404: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2408: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2410: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2413: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2415: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2473: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2475: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2480: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2482: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2691: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:2696: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:2705: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:2738: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2740: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2744: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2746: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2880: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:2882: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:3251: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:3750: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:3796: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:3804: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:3839: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:5453: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:5455: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6134: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:6143: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:6208: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6231: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6300: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:6319: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:6360: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6362: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6366: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6368: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6477: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6479: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6483: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6485: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6491: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6493: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6498: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6500: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6504: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6506: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6667: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6669: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6676: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6678: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6682: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6684: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6688: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6690: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6694: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6696: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6700: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6702: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6707: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6709: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6713: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6715: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6719: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6721: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6726: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6728: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6732: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6734: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6738: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6740: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6744: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6746: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6750: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6752: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6797: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6799: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6804: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:6806: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:7081: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:7083: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/info.c:7470: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/winspool.drv/info.c:7807: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/info.c:7818: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winspool.drv/info.c:7865: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/info.c:7877: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winspool.drv/info.c:7878: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/winspool.drv/tests/info.c:116: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/tests/info.c:228: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/tests/info.c:273: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/tests/info.c:278: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/winspool.drv/tests/info.c:1217: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/winspool.drv/tests/info.c:2269: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintab32/context.c:51: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintab32/context.c:54: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintab32/context.c:62: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintab32/context.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintab32/context.c:88: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:89: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:90: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:91: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:92: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:93: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:94: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:95: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:96: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:97: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:98: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:99: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:100: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:101: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/dlls/wintab32/context.c:248: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintab32/context.c:392: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintab32/wintab16.c:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintrust/asn.c:123: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:400: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:596: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintrust/asn.c:647: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:863: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:957: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:959: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:1362: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/asn.c:1475: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintrust/asn.c:1487: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintrust/asn.c:1528: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wintrust/asn.c:1546: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wintrust/asn.c:1608: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/crypt.c:253: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wintrust/register.c:385: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/register.c:387: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/register.c:764: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/register.c:766: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/register.c:777: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/register.c:779: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/register.c:800: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintrust/tests/crypt.c:29: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wintrust/tests/softpub.c:240: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wintrust/wintrust_main.c:657: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/ber.c:330: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wldap32/ber.c:425: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wldap32/error.c:51: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wldap32/init.c:136: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wldap32/misc.c:665: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wldap32/page.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/value.c:164: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/wldap32.h:41: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wldap32/wldap32.h:43: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wldap32/wldap32.h:77: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wldap32/wldap32.h:79: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/wldap32/wldap32.h:252: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/wldap32.h:435: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/wldap32.h:463: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/wldap32.h:491: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wldap32/wldap32.h:519: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/aspi.c:151: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wnaspi32/aspi.c:229: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wnaspi32/aspi.c:240: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wnaspi32/aspi.c:257: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wnaspi32/winaspi16.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wnaspi32/winaspi16.c:69: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wnaspi32/winaspi16.c:86: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/wnaspi32/winaspi16.c:105: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/wnaspi32/winaspi16.c:257: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi16.c:259: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi16.c:267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi16.c:310: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi16.c:318: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi16.c:415: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi16.c:416: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:374: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:376: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:384: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:427: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:524: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:525: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wnaspi32/winaspi32.c:536: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wnaspi32/winescsi.h:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/async.c:178: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/async.c:379: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/async.c:409: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/async.c:559: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/async.c:564: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:163: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/socket.c:747: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ws2_32/socket.c:748: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/dlls/ws2_32/socket.c:865: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:888: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:904: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:986: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:994: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:1019: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:1038: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:1886: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:1887: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:2061: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/socket.c:2731: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:3235: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/socket.c:3269: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:3774: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:3775: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/dlls/ws2_32/socket.c:3987: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:4260: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:4417: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:4624: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:4674: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/socket.c:4730: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/dlls/ws2_32/socket16.c:83: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/tests/sock.c:245: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/tests/sock.c:1127: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/tests/sock.c:1156: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/tests/sock.c:1877: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/ws2_32/tests/sock.c:1924: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/tests/sock.c:1994: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/ws2_32/tests/sock.c:2187: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/dlls/wsock32/socket.c:263: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wsock32/socket.c:516: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/dlls/wsock32/socket.c:565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/commctrl.h:4287: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/commctrl.h:4314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/custcntl.h:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/custcntl.h:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/custcntl.h:83: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/custcntl.h:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/d3d8types.h:993: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/d3d8types.h:994: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/d3d9types.h:1228: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/d3d9types.h:1229: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/d3d9types.h:1230: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/dbt.h:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddraw.h:1196: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddraw.h:1197: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddraw.h:1207: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddraw.h:1208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddrawi.h:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddrawi.h:58: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddrawi.h:785: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/ddrawi.h:819: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/dplay.h:219: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/dplay.h:220: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/dplay.h:222: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/fci.h:159: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/fci.h:160: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/fci.h:161: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/fdi.h:263: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/guiddef.h:30: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/icm.h:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/iptypes.h:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/iptypes.h:50: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/iptypes.h:51: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/iptypes.h:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/iptypes.h:77: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/iptypes.h:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/mshtml.h:24014: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/mshtml.h:24322: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/mshtml.h:24573: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/mshtml.h:26133: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/mshtml.h:26582: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/mshtml.h:26891: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/msvcrt/io.h:63: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/io.h:73: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/io.h:85: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/io.h:94: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/io.h:187: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/msvcrt/io.h:190: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/msvcrt/math.h:88: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/stdio.h:158: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/msvcrt/stdio.h:185: [2] (tmpfile) tmpfile: Function tmpfile() has a security flaw on some systems (e.g., older System V systems). wine-git/include/msvcrt/stdlib.h:44: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/string.h:75: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/msvcrt/wchar.h:152: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/msvcrt/wchar.h:161: [2] (buffer) wchar_t: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/richedit.h:262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/richedit.h:289: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/rpcndr.h:362: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/rpcndr.h:364: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/shtypes.h:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/strmif.h:4027: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/svrapi.h:28: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/svrapi.h:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/svrapi.h:40: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/svrapi.h:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/tchar.h:167: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/tchar.h:167: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/tchar.h:178: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/tlhelp32.h:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/tlhelp32.h:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/tlhelp32.h:119: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/twain.h:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/twain.h:123: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/twain.h:124: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/twain.h:125: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/twain.h:492: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winbase.h:2241: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/wincrypt.h:172: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wincrypt.h:174: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/windowsx.h:1400: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/wine/debug.h:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/epm.h:84: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/library.h:120: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mmsystem16.h:249: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:108: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:185: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:230: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:269: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:303: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:369: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:486: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:534: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:560: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:584: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:607: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:657: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:684: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1215: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1243: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1294: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1341: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1351: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1380: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1405: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1425: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1457: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1482: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1489: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1515: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1656: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1874: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1880: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1888: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/mscvpdb.h:1927: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/port.h:357: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/wine/server_protocol.h:188: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/test.h:479: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/unicode.h:72: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/winsock16.h:73: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wine/winsock16.h:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wingdi.h:3180: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winnls.h:780: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/include/winnt.h:285: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winnt.h:287: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winnt.h:3841: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winnt.h:4672: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/winsock.h:404: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winsock.h:624: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winsock.h:649: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winsock.h:650: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wintab.h:363: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winternl.h:1140: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/winternl.h:2386: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/winternl.h:2387: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/winternl.h:2388: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/winternl.h:2389: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/include/wsipx.h:31: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/wsipx.h:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/xcmc.h:91: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/include/xmldom.h:6419: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/xmldom.h:6515: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/include/xmldom.h:6593: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/port/futimes.c:39: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/port/futimes.c:41: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/port/memcpy_unaligned.c:27: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/port/memmove.c:33: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/port/mkstemps.c:122: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/port/mkstemps.c:124: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wine/c_037.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_10000.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_10006.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_10007.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_10029.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1006.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_10079.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_10081.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1026.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1250.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1251.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1252.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1253.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1254.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1255.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1256.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1257.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1258.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_1361.c:3739: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_20127.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_20866.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_20932.c:2650: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_21866.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28591.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28592.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28593.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28594.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28595.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28596.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28597.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28598.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28599.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28600.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28603.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28604.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28605.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_28606.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_424.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_437.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_500.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_737.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_775.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_850.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_852.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_855.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_856.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_857.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_860.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_861.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_862.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_863.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_864.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_865.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_866.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_869.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_874.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_875.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_878.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_932.c:1561: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_936.c:4201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_949.c:4168: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/c_950.c:2947: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/config.c:96: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:113: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:132: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:156: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/config.c:158: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/config.c:161: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/config.c:163: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/config.c:183: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/config.c:193: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/config.c:244: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/libs/wine/config.c:247: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/libs/wine/config.c:273: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:325: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:339: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:435: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:436: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:441: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/config.c:501: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/debug.c:249: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/debug.c:270: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/debug.c:278: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/debug.c:331: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/debug.c:361: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/debug.c:414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/debug.c:415: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:153: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wine/loader.c:160: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:214: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:387: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:397: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:569: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wine/loader.c:685: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/loader.c:686: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wine/loader.c:693: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:705: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/loader.c:720: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:756: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:768: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:792: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/loader.c:804: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/mmap.c:72: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wine/mmap.c:124: [2] (race) vfork: On some old systems, vfork() permits race conditions, and it's very difficult to use correctly. Use fork() instead. wine-git/libs/wine/port.c:38: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/port.c:47: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wine/sortkey.c:34: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/string.c:305: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/string.c:339: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/string.c:358: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/string.c:399: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wine/utf8.c:28: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wine/utf8.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wpp/ppl.yy.c:3648: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wpp/ppl.yy.c:3738: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/libs/wpp/ppl.yy.c:3797: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/ppl.yy.c:3997: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/ppl.yy.c:4004: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/ppl.yy.c:4192: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/ppy.tab.c:1261: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wpp/ppy.tab.c:1278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wpp/ppy.tab.c:1446: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wpp/ppy.tab.c:2657: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/preproc.c:112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/preproc.c:392: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/libs/wpp/preproc.c:394: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wpp/preproc.c:410: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wpp/preproc.c:429: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wpp/wpp.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/libs/wpp/wpp.c:153: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/libs/wpp/wpp.c:183: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/loader/freebsd.c:42: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/loader/glibc.c:86: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/loader/glibc.c:134: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/loader/kthread.c:82: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/kthread.c:162: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/kthread.c:200: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/loader/kthread.c:484: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/loader/main.c:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/main.c:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:367: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:415: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:427: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:569: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:956: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:957: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:962: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:963: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:982: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:983: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/loader/preloader.c:1090: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/clock/main.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/clock/main.c:49: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/cmd/batch.c:423: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/builtins.c:718: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/builtins.c:1607: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/builtins.c:1886: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/directory.c:313: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/directory.c:405: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:119: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/cmd/wcmdmain.c:126: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/cmd/wcmdmain.c:953: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1071: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1115: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1663: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1831: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1834: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1931: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:1968: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/cmd/wcmdmain.c:2021: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:2027: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:2172: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:2186: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmd/wcmdmain.c:2204: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/cmdlgtst/cmdlgtst.c:92: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/cmdlgtst/cmdlgtst.c:93: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/cmdlgtst/cmdlgtst.c:102: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/cmdlgtst/cmdlgtst.c:348: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/cmdlgtst/cmdlgtst.c:350: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/cmdlgtst/cmdlgtst.c:1074: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/control/control.c:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/eject/eject.c:45: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/eject/eject.c:64: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/expand/expand.c:32: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/expand/expand.c:80: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/expand/expand.c:81: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/explorer/systray.c:358: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/explorer/systray.c:372: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/explorer/systray.c:374: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/icinfo/icinfo.c:29: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/icinfo/icinfo.c:53: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/icinfo/icinfo.c:54: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/msiexec/msiexec.c:153: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/msiexec/msiexec.c:163: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/msiexec/msiexec.c:229: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/msiexec/msiexec.c:235: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/msiexec/msiexec.c:257: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/msiexec/msiexec.c:263: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/net/net.c:30: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/net/net.c:129: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/notepad/dialog.c:454: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/oleview/details.c:162: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/oleview/details.c:191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/oleview/details.c:242: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/oleview/tree.c:117: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/oleview/tree.c:238: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/oleview/typelib.c:204: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/oleview/typelib.c:250: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/progman/group.c:135: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/progman/group.c:136: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/progman/main.c:130: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/progman/main.c:483: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/progman/main.c:491: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/progman/program.c:188: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/progman/program.c:189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/progman/program.c:190: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/progman/program.c:191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/regedit/childwnd.c:161: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/edit.c:51: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/edit.c:52: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/edit.c:53: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/edit.c:56: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/programs/regedit/edit.c:59: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/programs/regedit/edit.c:91: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/edit.c:106: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/edit.c:455: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:46: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:47: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:48: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:321: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/regedit/framewnd.c:337: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:358: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:359: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/framewnd.c:641: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/hexedit.c:235: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/regedit/hexedit.c:251: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/regedit/listview.c:53: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/listview.c:149: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/regedit/listview.c:262: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/listview.c:285: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/listview.c:336: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/main.c:32: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/main.c:63: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/regedit.c:106: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/regedit/regedit.c:162: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/regedit/regproc.c:74: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/regedit/regproc.c:78: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/regedit/regproc.c:102: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/regedit/regproc.c:996: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/regedit/regproc.c:1066: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/regsvr32/regsvr32.c:226: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/regsvr32/regsvr32.c:231: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/rpcss/epm.h:84: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/rpcss/epm_s.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/rpcss/epm_s.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/rpcss/epmp.c:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/rpcss/epmp.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irot_s.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/rpcss/irot_s.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/rpcss/irotp.c:103: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irotp.c:114: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irotp.c:123: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irotp.c:177: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irotp.c:179: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irotp.c:247: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/rpcss/irotp.c:350: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/services/svcctl_s.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/services/svcctl_s.c:74: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/start/start.c:167: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/taskmgr/dbgchnl.c:112: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/dbgchnl.c:164: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/dbgchnl.c:288: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/dbgchnl.c:289: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/graphctl.c:105: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/taskmgr/graphctl.c:106: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/taskmgr/graphctl.c:294: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/taskmgr/graphctl.c:299: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/taskmgr/graphctl.c:308: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/taskmgr/graphctl.h:51: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/graphctl.h:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/perfdata.c:96: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/perfdata.c:173: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/taskmgr/perfdata.c:178: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/taskmgr/perfdata.c:189: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/taskmgr/perfdata.c:297: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/taskmgr/perfdata.c:673: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/taskmgr/procpage.c:53: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/procpage.c:76: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/procpage.c:208: [2] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/programs/taskmgr/procpage.c:214: [2] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/programs/taskmgr/procpage.c:220: [2] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/programs/taskmgr/procpage.c:236: [2] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/programs/taskmgr/procpage.c:242: [2] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/programs/taskmgr/procpage.c:248: [2] (buffer) _tcscat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant string. wine-git/programs/taskmgr/procpage.c:409: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/taskmgr/run.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/view/init.c:26: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/view/init.c:27: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/view/view.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/view/view.c:182: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/view/view.c:183: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/wineboot/wineboot.c:105: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/wineboot/wineboot.c:112: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/wineboot/wineboot.c:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wineboot/wineboot.c:127: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/wineboot/wineboot.c:129: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/wineboot/wineboot.c:143: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/wineboot/wineboot.c:146: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/wineboot/wineboot.c:687: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/wineboot/wineboot.c:689: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/wineboot/wineboot.c:690: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winebrowser/main.c:73: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winebrowser/main.c:204: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winebrowser/main.c:208: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winebrowser/main.c:401: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winebrowser/main.c:403: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/appdefaults.c:409: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/audio.c:105: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/audio.c:118: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/audio.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/audio.c:262: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/audio.c:525: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/audio.c:538: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/audio.c:550: [2] (buffer) CopyMemory: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/drive.c:126: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:129: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winecfg/drive.c:156: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:159: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winecfg/drive.c:165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:298: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:300: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:301: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:302: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:304: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:373: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winecfg/drive.c:377: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drive.c:413: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drivedetect.c:317: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/winecfg/drivedetect.c:327: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/drivedetect.c:354: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winecfg/driveui.c:238: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/driveui.c:314: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/libraries.c:153: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/libraries.c:238: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/libraries.c:277: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/libraries.c:301: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/libraries.c:308: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winecfg/libraries.c:372: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winecfg/libraries.c:410: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/libraries.c:450: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/theme.c:544: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/theme.c:546: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winecfg/theme.c:628: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:723: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/theme.c:744: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/theme.c:747: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/theme.c:754: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/theme.c:755: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/theme.c:921: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/theme.c:998: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1000: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1002: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1004: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1025: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1028: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1031: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/theme.c:1034: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/winecfg.c:87: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/winecfg.c:309: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:310: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:315: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/winecfg.c:415: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winecfg/winecfg.c:427: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:432: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:438: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:455: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:456: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/winecfg.c:592: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winecfg/x11drvdlg.c:286: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/x11drvdlg.c:293: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winecfg/x11drvdlg.c:331: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/x11drvdlg.c:334: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winecfg/x11drvdlg.c:366: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/programs/winecfg/x11drvdlg.c:463: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winecfg/x11drvdlg.c:466: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/wineconsole/curses.c:340: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wineconsole/curses.c:547: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winedbg/be_i386.c:185: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/be_i386.c:191: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/be_i386.c:199: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/be_i386.c:210: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/be_i386.c:747: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/break.c:338: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/db_disasm.c:1032: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/db_disasm.c:1043: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/db_disasm.c:1049: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/db_disasm.c:1070: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/dbg.tab.c:1586: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/dbg.tab.c:1603: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/dbg.tab.c:1771: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/dbg.tab.c:3337: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/dbg.tab.c:3405: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/debug.yy.c:911: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/debugger.h:179: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/debugger.h:229: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/display.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/display.c:102: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/display.c:167: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/display.c:236: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/expr.c:114: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:483: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:737: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:742: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:751: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:754: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:756: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:757: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:758: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:759: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:775: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:786: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:796: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:801: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:802: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:803: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:804: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:805: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:806: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:807: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:858: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/gdbproxy.c:1318: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1350: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1473: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1474: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1475: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1480: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:1482: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/gdbproxy.c:1501: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1521: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1567: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1568: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1629: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1672: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1712: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1752: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:1788: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:2125: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/gdbproxy.c:2131: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/info.c:278: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/info.c:363: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/info.c:364: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/info.c:370: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/info.c:372: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/info.c:387: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/info.c:388: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/info.c:404: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/info.c:406: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/info.c:579: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/info.c:619: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:107: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/memory.c:137: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/memory.c:150: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:294: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winedbg/memory.c:296: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winedbg/memory.c:304: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:387: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:416: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:419: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:530: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/memory.c:558: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/source.c:171: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/source.c:201: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/source.c:271: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/source.c:279: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/stack.c:232: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:38: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:151: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:210: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:250: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/symbol.c:417: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:418: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:420: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/winedbg/symbol.c:468: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:521: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:594: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/symbol.c:678: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:121: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:345: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:354: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winedbg/tgt_active.c:450: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:659: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:692: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:901: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_active.c:930: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/tgt_active.c:933: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_minidump.c:109: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/tgt_minidump.c:175: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_minidump.c:188: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/tgt_minidump.c:217: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/tgt_minidump.c:226: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winedbg/tgt_minidump.c:240: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winedbg/tgt_minidump.c:244: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winedbg/tgt_minidump.c:248: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winedbg/tgt_minidump.c:330: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/tgt_minidump.c:349: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/tgt_minidump.c:382: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/types.c:260: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:263: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:467: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:470: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:516: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:590: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:632: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:635: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/types.c:694: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/winedbg.c:104: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winedbg/winedbg.c:112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winedbg/winedbg.c:148: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:104: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:105: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:106: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:162: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:163: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:217: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:233: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:413: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:442: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:508: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:576: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:588: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:610: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.c:678: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:800: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.c:804: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.c:854: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.c:879: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:896: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:964: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:1319: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1460: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1461: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1462: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1581: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:1595: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:1802: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1834: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1870: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1917: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1974: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1976: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winefile/winefile.c:1996: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:1998: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2005: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.c:2034: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2097: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:2218: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2269: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2306: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2336: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2443: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2445: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2454: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.c:2466: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2529: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2649: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:2650: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:2712: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winefile/winefile.c:2812: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:2927: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3077: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3119: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3120: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3160: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3651: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3778: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3809: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3843: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3886: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:3937: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4107: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4131: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4422: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4436: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4450: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4743: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4843: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4844: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4890: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4953: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winefile/winefile.c:4954: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winefile/winefile.h:135: [2] (buffer) TCHAR: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemenubuilder/winemenubuilder.c:228: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/winemenubuilder/winemenubuilder.c:250: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winemenubuilder/winemenubuilder.c:349: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/winemenubuilder/winemenubuilder.c:529: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winemenubuilder/winemenubuilder.c:563: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/winemenubuilder/winemenubuilder.c:607: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winemenubuilder/winemenubuilder.c:631: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/programs/winemenubuilder/winemenubuilder.c:805: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemenubuilder/winemenubuilder.c:878: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winemenubuilder/winemenubuilder.c:1392: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/winemine/main.c:45: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemine/main.c:280: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemine/main.c:281: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemine/main.c:348: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemine/main.c:349: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winemine/main.h:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winepath/winepath.c:148: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:56: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:69: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winetest/main.c:75: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winetest/main.c:77: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winetest/main.c:80: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winetest/main.c:82: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winetest/main.c:165: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:169: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winetest/main.c:170: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winetest/main.c:197: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:329: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:332: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:432: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:462: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:470: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winetest/main.c:501: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/programs/winetest/send.c:110: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:51: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:171: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winevdm/winevdm.c:192: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:193: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:194: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:195: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:196: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:197: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winevdm/winevdm.c:381: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhelp/macro.lex.yy.c:1827: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:392: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:396: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:451: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:619: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:648: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:649: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:672: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:792: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:854: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:861: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:888: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:897: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:976: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:981: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1010: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:1055: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:1077: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:1081: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:1115: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1126: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1135: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1164: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1169: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1174: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1179: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1184: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1189: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1210: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1522: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.c:1564: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1604: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/winhlp32/hlpfile.c:1736: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:1742: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winhlp32/hlpfile.c:1783: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2111: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2187: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2254: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2289: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2323: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2339: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2346: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2379: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2519: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2537: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2552: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.c:2596: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/hlpfile.h:27: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.h:28: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/hlpfile.h:29: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/macro.c:505: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/macro.c:681: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/macro.lex.yy.c:1836: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/winhelp.c:82: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/programs/winhlp32/winhelp.c:86: [2] (buffer) lstrcpy: Does not check for buffer overflows when copying to destination. Consider using a function version that stops copying at the end of the buffer. Risk is low because the source is a constant string. wine-git/programs/winhlp32/winhelp.c:131: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/winhelp.c:132: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/winhelp.c:191: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winhlp32/winhelp.c:192: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/programs/winhlp32/winhelp.c:1097: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/winhelp.c:1318: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/winhlp32/winhelp.c:1329: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/winhlp32/winhelp.c:1680: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:77: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:209: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/wordpad/wordpad.c:211: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/wordpad/wordpad.c:213: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/programs/wordpad/wordpad.c:243: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:721: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:975: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:978: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/wordpad/wordpad.c:1024: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:1288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:1290: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/wordpad/wordpad.c:1292: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/wordpad/wordpad.c:1329: [2] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. wine-git/programs/wordpad/wordpad.c:1943: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:1947: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/wordpad/wordpad.c:2179: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/wordpad/wordpad.c:2185: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/programs/xcopy/xcopy.c:279: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/xcopy/xcopy.c:439: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/xcopy/xcopy.c:632: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/programs/xcopy/xcopy.c:657: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/atom.c:253: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/change.c:77: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/change.c:142: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/change.c:550: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/change.c:611: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/change.c:686: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/change.c:692: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/change.c:768: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/change.c:855: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/change.c:881: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/change.c:933: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/change.c:949: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/change.c:970: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/class.c:54: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/class.c:245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/class.c:268: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:376: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:574: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:683: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:768: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:779: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:790: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:970: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/console.c:1276: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/context_alpha.c:59: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/context_i386.c:71: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/debugger.c:117: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/debugger.c:399: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/directory.c:499: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/directory.c:500: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/fd.c:178: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/fd.c:273: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:408: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/fd.c:418: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/fd.c:430: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/fd.c:433: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/fd.c:563: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/fd.c:949: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:997: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:1506: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:1580: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:1585: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:1611: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/fd.c:1900: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/file.c:168: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/file.c:232: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/file.c:235: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/file.c:355: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/file.c:357: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/file.c:380: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/file.c:399: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/file.c:421: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/file.c:440: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/handle.c:340: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/handle.c:695: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/handle.c:697: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/handle.c:699: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/handle.c:701: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/handle.c:703: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/mach.c:325: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/mach.c:395: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/mach.c:449: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/mach.c:450: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/mach.c:451: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:115: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:140: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:471: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:473: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:475: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:477: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/object.c:479: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/procfs.c:46: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/procfs.c:55: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/procfs.c:56: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/procfs.c:70: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/procfs.c:75: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/procfs.c:76: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/ptrace.c:377: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/ptrace.c:386: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/ptrace.c:392: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/ptrace.c:452: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/ptrace.c:462: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/ptrace.c:469: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/ptrace.c:495: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/queue.c:110: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/queue.c:1542: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/queue.c:2110: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/region.c:610: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/region.c:732: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:213: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:735: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:736: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:741: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:959: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:960: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:965: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/registry.c:1386: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/registry.c:1541: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/registry.c:1561: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/registry.c:1562: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/request.c:558: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/request.c:583: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/request.c:749: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/request.c:766: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/server/request.h:98: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/thread.c:1397: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:466: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:543: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:587: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:597: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:1219: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:1245: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/token.c:1299: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/trace.c:267: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/trace.c:507: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/trace.c:4246: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/trace.c:4582: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/trace.c:4589: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/unicode.c:30: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/unicode.c:43: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/unicode.c:152: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/unicode.c:154: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/unicode.c:155: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/unicode.c:170: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/unicode.c:172: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/unicode.c:179: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/unicode.c:181: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/unicode.c:183: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/server/unicode.h:37: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/window.c:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/server/window.c:1858: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/window.c:1881: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/window.c:2112: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/winstation.c:199: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/server/winstation.c:201: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/fnt2bdf.c:130: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/fnt2bdf.c:131: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/fnt2bdf.c:134: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/fnt2bdf.c:147: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/fnt2bdf.c:215: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2bdf.c:220: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/fnt2bdf.c:555: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/fnt2bdf.h:35: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2fon.c:45: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2fon.c:87: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2fon.c:93: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2fon.c:95: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2fon.c:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/fnt2fon.c:112: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/fnt2fon.c:142: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/fnt2fon.c:146: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/fnt2fon.c:148: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/fnt2fon.c:190: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/fnt2fon.c:261: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/fnt2fon.c:286: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/make_ctests.c:100: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/make_ctests.c:130: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:314: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:323: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:354: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:376: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:396: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:406: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:416: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:433: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:446: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:452: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:460: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:470: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/makedep.c:472: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:526: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/makedep.c:878: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/makedep.c:890: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/sfnt2fnt.c:57: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/sfnt2fnt.c:385: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/sfnt2fnt.c:515: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/sfnt2fnt.c:573: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/sfnt2fnt.c:575: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/sfnt2fnt.c:627: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/sfnt2fnt.c:632: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/sfnt2fnt.c:634: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/sfnt2fnt.c:687: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/client.c:428: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/hash.c:30: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:68: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:106: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:144: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:181: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:219: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:257: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:295: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:333: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:371: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:409: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/hash.c:447: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/header.c:1067: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/parser.tab.c:2272: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/parser.tab.c:2289: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/parser.tab.c:2457: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/parser.yy.c:691: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/parser.yy.c:697: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:698: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:699: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:700: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:701: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:702: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:703: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:704: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/parser.yy.c:2429: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/proxy.c:95: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/server.c:378: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/typelib.c:357: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/typelib.c:360: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:250: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:291: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:492: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/widl.c:497: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/widl.c:502: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/widl.c:507: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/widl.c:512: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/widl.c:517: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/widl/widl.c:542: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:548: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:557: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:570: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/widl.c:583: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/widl/write_msft.c:78: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/write_msft.c:86: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/write_msft.c:293: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/write_msft.c:298: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:344: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/widl/write_msft.c:348: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:543: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:586: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:666: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:685: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:704: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:1223: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:1236: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/widl/write_msft.c:2461: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/build.h:61: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/import.c:76: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/import.c:202: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/import.c:287: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/import.c:506: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/import.c:554: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/import.c:1153: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/main.c:213: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/main.c:219: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/main.c:225: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/main.c:438: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/main.c:443: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/parser.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/parser.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/parser.c:52: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/res16.c:173: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/res32.c:229: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/spec16.c:36: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/spec16.c:182: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/spec16.c:199: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/spec16.c:205: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/spec16.c:208: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/spec16.c:212: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/spec16.c:224: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/spec16.c:288: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/spec16.c:421: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/spec16.c:456: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/spec16.c:534: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/utils.c:39: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/utils.c:193: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/utils.c:194: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winebuild/utils.c:195: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winebuild/utils.c:244: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/utils.c:252: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winebuild/utils.c:387: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/utils.c:407: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/utils.c:506: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/utils.c:523: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winebuild/utils.c:570: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/debug.c:496: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/debug.c:501: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/debug.c:675: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/debug.c:720: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/dump.c:83: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/dump.c:111: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/dump.c:186: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/dump.c:189: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/dump.c:192: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/dump.c:208: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/dump.c:257: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winedump/emf.c:41: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/le.c:42: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/le.c:66: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lib.c:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lib.c:103: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lib.c:107: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lnk.c:134: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lnk.c:264: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lnk.c:326: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/lnk.c:345: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/main.c:139: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/main.c:142: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winedump/main.c:333: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/minidump.c:247: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/minidump.c:256: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/minidump.c:267: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/minidump.c:271: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/minidump.c:273: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/minidump.c:275: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/misc.c:85: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/misc.c:104: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/misc.c:127: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/misc.c:199: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/misc.c:209: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winedump/msc.c:54: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/msc.c:55: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/msc.c:176: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/msc.c:181: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:182: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:183: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:188: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:189: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:190: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:191: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:192: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:193: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:194: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:196: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:197: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:198: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/msc.c:1066: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/msc.c:1067: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/msc.c:1083: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/msc.c:1084: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/ne.c:122: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/ne.c:138: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/ne.c:173: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/ne.c:196: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/ne.c:277: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/output.c:65: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/output.c:78: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/winedump/output.c:498: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pdb.c:79: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/pdb.c:565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/pe.c:138: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:233: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/pe.c:278: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/pe.c:510: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:511: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:512: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:825: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/winedump/pe.c:953: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:954: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:968: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:975: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:977: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:979: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:993: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:994: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/pe.c:1009: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:1011: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:1018: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:1020: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:1022: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/winedump/pe.c:1350: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/winedump.h:88: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/winedump.h:89: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/winedump.h:90: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/winedump.h:91: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winedump/winedump.h:99: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winegcc/utils.c:196: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/winegcc/utils.c:208: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/winegcc/utils.c:211: [2] (misc) open: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wmc/mcl.c:111: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wmc/mcy.tab.c:1153: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wmc/mcy.tab.c:1170: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wmc/mcy.tab.c:1338: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wmc/wmc.c:158: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/wmc/wmc.c:259: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/wmc/wmc.c:265: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/wmc/wmc.c:270: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wmc/write.c:169: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wmc/write.c:349: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/wmc/write.c:416: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/wmc/write.c:494: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wrc/dumpres.c:107: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/dumpres.c:132: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/dumpres.c:139: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/wrc/genres.c:414: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/genres.c:1782: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/genres.c:1818: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/wrc/genres.c:1844: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/genres.c:1846: [2] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source has a constant maximum length. wine-git/tools/wrc/newstruc.c:471: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/newstruc.c:490: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/newstruc.c:492: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/newstruc.c:565: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/newstruc.c:582: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/newstruc.c:584: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/newstruc.c:708: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:709: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:710: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:711: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:712: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:713: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:714: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:715: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:716: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:717: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:718: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/newstruc.c:1134: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/parser.tab.c:441: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/parser.tab.c:1897: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/parser.tab.c:1914: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/parser.tab.c:2082: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/parser.tab.c:5213: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wrc/parser.tab.c:5302: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/parser.tab.c:5338: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/parser.yy.c:1668: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/parser.yy.c:2823: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/parser.yy.c:2848: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/parser.yy.c:2859: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/readres.c:237: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/readres.c:271: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/readres.c:352: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wrc/utils.c:281: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/utils.c:289: [2] (buffer) memcpy: Does not check for buffer overflows when copying to destination. Make sure destination can always hold the source data. wine-git/tools/wrc/wrc.c:207: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/wrc.c:270: [2] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant string. wine-git/tools/wrc/wrc.c:442: [2] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant string. wine-git/tools/wrc/wrc.c:464: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wrc/wrc.c:489: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/tools/wrc/writeres.c:51: [2] (buffer) char: Statically-sized arrays can be overflowed. Perform bounds checking, use functions that limit length, or ensure that the size is larger than the maximum possible length. wine-git/tools/wrc/writeres.c:53: [2] (misc) fopen: Check when opening files - can an attacker redirect it (via symlinks), force the opening of special file type (e.g., device files), move things around to create a race condition, control its ancestors, or change its contents?. wine-git/dlls/advapi32/cred.c:579: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:580: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:580: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:584: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:591: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:592: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:593: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/cred.c:625: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/crypt.c:2292: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/advapi32/crypt_lmhash.c:51: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/registry.c:1047: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/registry.c:1134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/service.c:227: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/service.c:418: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt.c:584: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt.c:708: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt.c:708: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt.c:712: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt.c:869: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt.c:910: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt_lmhash.c:321: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt_lmhash.c:325: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/crypt_sha.c:43: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:72: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:443: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:445: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:449: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:645: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:645: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:780: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:789: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:789: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:812: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:820: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:821: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:822: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:830: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:830: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:840: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:840: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:849: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:858: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:858: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:874: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/registry.c:874: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/security.c:561: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/security.c:568: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/security.c:571: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advapi32/tests/security.c:2300: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/files.c:550: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/tests/advpack.c:199: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/tests/files.c:59: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/tests/files.c:60: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/tests/files.c:285: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/tests/install.c:61: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/advpack/tests/install.c:230: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/advpack/tests/install.c:256: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/amstream/regsvr.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/amstream/regsvr.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/amstream/regsvr.c:264: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/amstream/regsvr.c:410: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/avicap32/avicap32_main.c:116: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/avicap32/avicap32_main.c:139: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/avifil32/avifile.c:1952: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/avifil32/avifile.c:1952: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/avifil32/avifile.c:1956: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/avifil32/avifile.c:1961: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/avifil32/regsvr.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/avifil32/regsvr.c:240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/avifil32/regsvr.c:263: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/avifil32/regsvr.c:409: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/browseui/regsvr.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/browseui/regsvr.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/browseui/regsvr.c:264: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/browseui/regsvr.c:410: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/cabinet_main.c:162: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:286: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:305: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:324: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:506: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:507: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:520: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:521: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:568: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:569: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:583: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:584: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:611: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:612: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:614: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:615: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:936: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:942: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1055: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1056: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1062: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1099: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1100: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1106: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1221: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1225: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1226: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1249: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1271: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1303: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1304: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1363: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1376: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1377: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1564: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1565: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1573: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1579: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1580: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1588: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1601: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1602: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1605: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1606: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1779: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1780: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1789: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1790: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1801: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1802: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1811: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1812: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1857: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1858: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1862: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:1863: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2106: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2213: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2266: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2363: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2453: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2454: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2457: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2458: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2461: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2509: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2510: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2574: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2581: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2582: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2589: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2612: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2613: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2616: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2617: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2675: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fci.c:2676: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fdi.c:464: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fdi.c:2078: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fdi.c:2098: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fdi.c:2099: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fdi.c:2459: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/fdi.c:2460: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/tests/extract.c:78: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/tests/extract.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/tests/extract.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/tests/fdi.c:283: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/tests/fdi.c:284: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cabinet/tests/fdi.c:426: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comcat/regsvr.c:129: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comcat/regsvr.c:225: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comcat/regsvr.c:248: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/listview.c:583: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:586: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:590: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:594: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:598: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:603: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/listview.c:624: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:627: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:631: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:635: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:639: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:643: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:648: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/listview.c:660: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:663: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:667: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:671: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:675: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:679: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:683: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/comctl32/listview.c:688: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/propsheet.c:180: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/comctl32/propsheet.c:2965: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/string.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/string.c:153: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/string.c:185: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/string.c:338: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/tests/misc.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/tests/mru.c:189: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/tests/tab.c:516: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/tests/treeview.c:406: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. Risk is low because the source is a constant string. wine-git/dlls/comctl32/tests/treeview.c:414: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. Risk is low because the source is a constant string. wine-git/dlls/comctl32/toolbar.c:2983: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comctl32/toolbar.c:7190: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/colordlg.c:396: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlg.c:384: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlg.c:401: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlg.c:402: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlg.c:2177: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlg.c:2180: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlg31.c:664: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/filedlgbrowser.c:85: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/comdlg32/printdlg.c:205: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg.c:206: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg.c:207: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg.c:224: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg.c:228: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg.c:3533: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/comdlg32/printdlg.c:3640: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/comdlg32/printdlg16.c:68: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg16.c:69: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg16.c:70: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg16.c:87: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/comdlg32/printdlg16.c:91: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crtdll/crtdll_main.c:171: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:80: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:100: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:181: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:183: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:183: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:185: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:185: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:194: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:196: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:203: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:205: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:399: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:399: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:402: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:414: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:418: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:421: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/base64.c:574: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/cert.c:1973: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/cert.c:2044: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/cert.c:2058: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/cert.c:2078: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/decode.c:1228: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/decode.c:1232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/decode.c:1257: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/decode.c:1258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/decode.c:1283: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/decode.c:1299: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/encode.c:3132: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/encode.c:3184: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/encode.c:4298: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/filestore.c:101: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/filestore.c:103: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/msg.c:765: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:1555: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:1563: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:1586: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:1609: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:1961: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:1984: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:2010: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:2091: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:2094: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:2164: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:2167: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/msg.c:2311: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/object.c:48: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/object.c:50: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/oid.c:135: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/oid.c:173: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/oid.c:258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/protectdata.c:130: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/protectdata.c:519: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/protectdata.c:556: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:63: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:77: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:86: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:91: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:115: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:158: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:160: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:162: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:164: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:166: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:168: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:170: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:173: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:175: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:178: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:180: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:183: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:186: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:189: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:192: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:195: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:198: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:201: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/rootstore.c:324: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/rootstore.c:334: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/crypt32/serialize.c:431: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:435: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:438: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:440: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:442: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:451: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:473: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:480: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:487: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:494: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:499: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/serialize.c:505: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/crypt32/str.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/str.c:221: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:113: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:115: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:117: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:119: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:122: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:224: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:224: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:227: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:229: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/base64.c:293: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/encode.c:156: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/encode.c:179: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/encode.c:276: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/encode.c:301: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/encode.c:977: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/encode.c:1846: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/msg.c:2364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/msg.c:2376: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:49: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:52: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:91: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:111: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:154: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:179: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/protectdata.c:197: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/sip.c:185: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/crypt32/tests/sip.c:187: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/dlls/crypt32/tests/sip.c:188: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/sip.c:221: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/dlls/crypt32/tests/sip.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/str.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/str.c:321: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/crypt32/tests/str.c:325: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/cryptnet/cryptnet_main.c:111: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/cryptnet/tests/cryptnet.c:278: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/d3dxof/d3dxof.c:324: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/d3dxof/regsvr.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/d3dxof/regsvr.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/d3dxof/regsvr.c:265: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/d3dxof/regsvr.c:411: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/d3dxof/tests/d3dxof.c:83: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/dwarf.c:446: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/dwarf.c:1856: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/dwarf.c:1866: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/dwarf.c:1886: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/dwarf.c:1966: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/elf_module.c:277: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dbghelp/elf_module.c:290: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dbghelp/elf_module.c:300: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dbghelp/elf_module.c:446: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/elf_module.c:853: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dbghelp/elf_module.c:967: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:502: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:651: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:666: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:681: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:696: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:742: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:746: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:1089: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dbghelp/msc.c:1563: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:1565: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:1573: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:1577: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:1579: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:2193: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:2216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:2309: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/msc.c:2310: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/path.c:40: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/path.c:196: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/path.c:197: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/pe_module.c:273: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dbghelp/source.c:47: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/source.c:68: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/source.c:70: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/source.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/source.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:172: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:640: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:640: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:898: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:899: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:1219: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:1224: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:1231: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:1232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:1237: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/dlls/dbghelp/stabs.c:1363: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/stabs.c:1457: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/storage.c:111: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/symbol.c:623: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/symbol.c:1623: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dbghelp/type.c:417: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ddraw/regsvr.c:136: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ddraw/regsvr.c:232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ddraw/regsvr.c:255: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ddrawex/regsvr.c:122: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ddrawex/regsvr.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput/joystick_linux.c:417: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput/joystick_linux.c:694: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dinput/joystick_linuxinput.c:710: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dinput/regsvr.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput/regsvr.c:239: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput/regsvr.c:262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput/regsvr.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput8/regsvr.c:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dinput8/regsvr.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmband/dmutils.c:71: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmband/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmband/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmband/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmband/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmcompos/dmcompos_main.c:703: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmcompos/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmcompos/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmcompos/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmcompos/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmime/dmutils.c:625: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmime/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmime/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmime/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmime/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmloader/debug.c:441: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmloader/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmloader/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmloader/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmloader/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmscript/dmscript_main.c:987: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmscript/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmscript/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmscript/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmscript/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmstyle/dmutils.c:636: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmstyle/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmstyle/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmstyle/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmstyle/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmsynth/dmsynth_main.c:535: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmsynth/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmsynth/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmsynth/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmsynth/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmusic/dmusic_main.c:559: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dmusic/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmusic/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmusic/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dmusic/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dnsapi/dnsapi.h:55: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dnsapi/query.c:182: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dnsapi/query.c:500: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplay.c:1328: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplay.c:1334: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplay.c:2525: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplay.c:2530: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplay.c:2729: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplay.c:2734: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:150: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:682: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:690: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:706: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:714: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:981: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:986: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:996: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:1001: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:1082: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplayx_global.c:1088: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplobby.c:1095: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplobby.c:1109: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplobby.c:1123: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplobby.c:1137: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplobby.c:1242: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/dplayx/dplobby.c:1246: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/dplobby.c:1249: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/dplayx/dplobby.c:1252: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/regsvr.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/regsvr.c:239: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/regsvr.c:262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/regsvr.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:563: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:566: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:2131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:2134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:2137: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:3107: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:3499: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:3500: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/dplayx/tests/dplayx.c:3840: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:3841: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/dplayx/tests/dplayx.c:4859: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:4956: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:4978: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:5134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:5191: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:6013: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:6014: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dplayx/tests/dplayx.c:6015: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dpnet/regsvr.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dpnet/regsvr.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dpnet/regsvr.c:264: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dpnet/regsvr.c:410: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:629: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:630: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:631: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:678: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:679: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:680: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:726: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:727: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:728: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:774: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:775: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/propset.c:776: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/regsvr.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/regsvr.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/regsvr.c:265: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/regsvr.c:411: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dsound/tests/capture.c:274: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/dsound/tests/ds3d.c:132: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/dswave/dswave_main.c:487: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dswave/regsvr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dswave/regsvr.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dswave/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dswave/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dxdiagn/regsvr.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dxdiagn/regsvr.c:239: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dxdiagn/regsvr.c:262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dxdiagn/regsvr.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/dxerr8/dxerr8.c:126: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dxerr8/dxerr8.c:130: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dxerr9/dxerr9.c:130: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/dxerr9/dxerr9.c:134: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/fusion/assembly.c:749: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/fusion/assembly.c:784: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/fusion/tests/asmcache.c:802: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/driver.c:254: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/gdi32/enhmfdrv/init.c:280: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/enhmfdrv/init.c:281: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/env.c:76: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/env.c:76: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/font.c:310: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:624: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:624: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:624: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:710: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:710: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:901: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:1803: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:1831: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:1836: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2301: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2302: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2303: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2304: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2310: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2348: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2359: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2360: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2361: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2375: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2377: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/freetype.c:2546: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:440: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:444: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:655: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:655: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:750: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:750: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdi32/printdrv16.c:764: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/gdi32/tests/font.c:744: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gdiplus/graphics.c:802: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gdiplus/graphics.c:812: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gdiplus/graphics.c:814: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gdiplus/graphics.c:815: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gdiplus/graphics.c:817: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gdiplus/graphics.c:821: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gdiplus/graphics.c:822: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/gphoto2.ds/ds_ctrl.c:89: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gphoto2.ds/ds_ctrl.c:89: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/gphoto2.ds/gphoto2_main.c:577: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/gphoto2.ds/gphoto2_main.c:579: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/gphoto2.ds/gphoto2_main.c:616: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/gphoto2.ds/gphoto2_main.c:619: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/hhctrl.ocx/chm.c:52: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:65: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:80: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:97: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:104: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:111: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:163: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:176: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/chm.c:184: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hhctrl.ocx/content.c:160: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/hhctrl.ocx/regsvr.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/hhctrl.ocx/regsvr.c:239: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/hhctrl.ocx/regsvr.c:262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/hhctrl.ocx/regsvr.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/hlink/link.c:642: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:645: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:647: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:654: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:660: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:676: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:679: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/hlink/link.c:680: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/imagehlp/access.c:203: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/imm32/imm.c:262: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/inetcomm/internettransport.c:100: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/inetcomm/mimeole.c:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/mimeole.c:147: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/mimeole.c:162: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/mimeole.c:165: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/mimeole.c:288: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/mimeole.c:763: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/mimeole.c:766: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/mimeole.c:1510: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/mimeole.c:1511: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/mimeole.c:1532: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/mimeole.c:1535: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/mimeole.c:1581: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/inetcomm/regsvr.c:137: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/regsvr.c:233: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inetcomm/regsvr.c:256: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/infosoft/infosoft_main.c:159: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inseng/regsvr.c:148: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inseng/regsvr.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inseng/regsvr.c:267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/inseng/regsvr.c:413: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/iphlpapi/ifenum.c:485: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/iphlpapi/ifenum.c:644: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/iphlpapi/ipstats.c:194: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/atom.c:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/atom.c:289: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/atom16.c:219: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/atom16.c:305: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/atom16.c:342: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/computername.c:101: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/computername.c:141: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/computername.c:270: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/console.c:693: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:700: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:702: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:703: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:850: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:852: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:853: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:854: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:866: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:868: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:869: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:870: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:878: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:888: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:888: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:908: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:936: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/console.c:1042: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/console.c:1159: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/cpu.c:161: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/cpu.c:217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/cpu.c:228: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/cpu.c:233: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/cpu.c:239: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/debugger.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/environ.c:127: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/error16.c:240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/except.c:99: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:102: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:105: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:108: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:111: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:114: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:118: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:123: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:126: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:129: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:132: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:137: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:140: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:144: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:147: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:151: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:154: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:157: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:164: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:169: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/except.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/except.c:302: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/except.c:306: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/except.c:308: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/file16.c:93: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/file16.c:99: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/file16.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/file16.c:107: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/file16.c:396: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:168: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:237: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:243: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:328: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:341: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/format_msg.c:341: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/locale.c:1811: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/locale.c:2281: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/locale.c:2717: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/locale.c:2718: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/lzexpand.c:276: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/lzexpand.c:297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/lzexpand.c:515: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/lzexpand.c:522: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/lzexpand.c:522: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/kernel32/lzexpand.c:523: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:703: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:794: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1059: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1478: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1525: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1545: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1603: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1650: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1656: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1674: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1715: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1835: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1855: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1872: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:1997: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/ne_module.c:2002: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:134: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/oldconfig.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:172: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/oldconfig.c:195: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/oldconfig.c:206: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/oldconfig.c:226: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/oldconfig.c:230: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/kernel32/oldconfig.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:239: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:246: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:252: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:387: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/oldconfig.c:412: [1] (buffer) sscanf: it's unclear if the %s limit in the format string is small enough. Check that the limit is sufficiently small, or use a different input function. wine-git/dlls/kernel32/path.c:270: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:928: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:1178: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:1178: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:1214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:1322: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/process.c:1861: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:2037: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:2081: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/process.c:2085: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/profile.c:1547: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/pthread.c:52: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/registry16.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:210: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:226: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:306: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:489: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:502: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:550: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:720: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/resource16.c:735: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/selector.c:349: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/selector.c:349: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/snoop16.c:147: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/snoop16.c:149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/snoop16.c:217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/string.c:77: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/string.c:103: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/string.c:236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/string.c:364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tape.c:52: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tape.c:55: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/task.c:298: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/task.c:335: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/task.c:1613: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/actctx.c:195: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/actctx.c:214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/actctx.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/actctx.c:226: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/actctx.c:231: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/actctx.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/atom.c:164: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/atom.c:202: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/atom.c:434: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/atom.c:490: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/comm.c:718: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:736: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:835: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:870: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:871: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:896: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:899: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:901: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:917: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:917: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:922: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:924: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/comm.c:925: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/console.c:181: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/console.c:203: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/console.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/console.c:317: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/console.c:353: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:55: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:79: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/debugger.c:88: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/debugger.c:89: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/debugger.c:214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:221: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:221: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/debugger.c:285: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/directory.c:52: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/directory.c:115: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:55: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:61: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:67: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:73: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:96: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:246: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:254: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:254: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:261: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:261: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:276: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/environ.c:336: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:80: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:88: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:206: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:248: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:263: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:279: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:283: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:304: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:356: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:358: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:359: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:391: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:395: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:396: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:397: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:401: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:402: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:403: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:433: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:441: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:445: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:795: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:797: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/kernel32/tests/file.c:1050: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/file.c:1286: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/kernel32/tests/file.c:1579: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/locale.c:120: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/locale.c:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/locale.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/locale.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/module.c:30: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/dlls/kernel32/tests/module.c:57: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:519: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:519: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:556: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:584: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:611: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:679: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:820: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:826: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:847: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:901: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/path.c:902: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/kernel32/tests/path.c:911: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/kernel32/tests/path.c:932: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/kernel32/tests/path.c:1212: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/pipe.c:764: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:775: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:776: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:786: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:787: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:789: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:802: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:803: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/pipe.c:806: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/kernel32/tests/process.c:82: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:137: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:207: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:295: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:395: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:896: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:911: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:967: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:977: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:979: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:981: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:983: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:989: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:996: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/process.c:1268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:114: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:114: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/profile.c:332: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/tests/volume.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/volume.c:116: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/volume.c:123: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/volume.c:735: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/volume.c:1124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/kernel32/volume.c:1131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/tests/prop.c:323: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/tests/prop.c:328: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/tests/prop.c:336: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/tests/prop.c:346: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/tests/prop.c:354: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/tests/prop.c:364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/util.c:487: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mapi32/util.c:798: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mciavi32/info.c:233: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:237: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:240: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:244: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:248: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:267: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:271: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:274: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:278: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:282: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:291: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. Risk is low because the source is a constant string. wine-git/dlls/mciavi32/info.c:291: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mlang/regsvr.c:149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mlang/regsvr.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mlang/regsvr.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mlang/regsvr.c:414: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/device.c:54: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/device.c:100: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/device.c:164: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/device.c:200: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/device.c:226: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/mountmgr.c:416: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/mountmgr.c:420: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mountmgr.sys/mountmgr.c:426: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msacm32/driver.c:544: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msacm32/format.c:92: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/profile.c:1462: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mscms/profile.c:1494: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mscms/profile.c:1494: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mscms/tests/profile.c:139: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:287: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:338: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:385: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:426: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:1003: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:1061: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:1147: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mscms/tests/profile.c:1205: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/install.c:264: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/install.c:265: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/mshtml_private.h:691: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/navigate.c:850: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mshtml/navigate.c:854: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mshtml/navigate.c:855: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mshtml/nsembed.c:210: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mshtml/nsembed.c:211: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/mshtml/persist.c:57: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/persist.c:60: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/persist.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/tests/dom.c:2669: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/tests/script.c:198: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/mshtml/tests/script.c:883: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/cond.tab.c:1032: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/custom.c:1297: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/custom.c:1330: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/custom.c:1338: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/database.c:279: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/database.c:290: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/database.c:793: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/font.c:149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/font.c:151: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/media.c:181: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/media.c:183: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/media.c:184: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/package.c:1173: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/record.c:617: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/record.c:635: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/regsvr.c:162: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/regsvr.c:256: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/regsvr.c:294: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/regsvr.c:437: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/sql.tab.c:1115: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/storages.c:141: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/storages.c:159: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/storages.c:160: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/storages.c:168: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/storages.c:169: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/string.c:220: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/automation.c:304: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/automation.c:305: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:249: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:265: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:281: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:313: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:481: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:505: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:505: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:510: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:510: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:515: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:515: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:520: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:520: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:1306: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/msi/tests/db.c:1322: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:1392: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:1393: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/db.c:4378: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4553: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4557: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4558: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4568: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4570: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4573: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4583: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4585: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4586: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4595: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4599: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:4600: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:5780: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/db.c:5784: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msi/tests/format.c:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:150: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:166: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:180: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:195: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:299: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/format.c:300: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/install.c:1325: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/install.c:1456: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/install.c:1702: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/msi/tests/install.c:1743: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/msi/tests/install.c:1832: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/install.c:2250: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/msi.c:270: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/msi.c:296: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/msi.c:356: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:316: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:330: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:361: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:377: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:393: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:409: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:426: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:442: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:458: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:474: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:490: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:504: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:520: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:536: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:643: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:644: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:840: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1581: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1631: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1638: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1687: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1694: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1701: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/package.c:1755: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msi/tests/package.c:6015: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/msi/tests/record.c:99: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/suminfo.c:188: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msi/tests/suminfo.c:196: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/mstask/mstask_main.c:71: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/console.c:73: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/cpp.c:139: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/cpp.c:571: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/data.c:76: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/data.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/data.c:91: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/data.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/dir.c:871: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/dir.c:879: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/environ.c:35: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/environ.c:85: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/errno.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/errno.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/exit.c:108: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/msvcrt/exit.c:172: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/msvcrt/file.c:1788: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/file.c:1997: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/dlls/msvcrt/file.c:2000: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/dlls/msvcrt/file.c:2001: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/dlls/msvcrt/file.c:2656: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/file.c:2765: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/file.c:2867: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/locale.c:131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/locale.c:343: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/locale.c:448: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/msvcrt/math.c:863: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/msvcrt/math.c:889: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/msvcrt/math.c:906: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/math.c:908: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/mbcs.c:81: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/mbcs.c:86: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/dlls/msvcrt/mbcs.c:375: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/mbcs.c:516: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/msvcrt/mbcs.c:1318: [1] (buffer) _mbsnbcat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/dlls/msvcrt/mbcs.c:1505: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/mbcs.c:1611: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/process.c:260: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/process.c:364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/string.c:41: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/string.c:68: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/dir.c:157: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/msvcrt/tests/file.c:75: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:80: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:83: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:84: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:89: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:91: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:95: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:99: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:103: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:157: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:159: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:160: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:163: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:222: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:257: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:329: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:331: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:428: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:429: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:433: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:447: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:458: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:463: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:474: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:479: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:484: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:491: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:499: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:535: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:536: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:546: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:547: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:552: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:577: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:577: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:578: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:598: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:622: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:642: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:648: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:650: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:655: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:663: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:687: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:693: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:695: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:700: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:720: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:750: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:763: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:777: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:784: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:999: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:1000: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:1000: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:1037: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:1038: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:1038: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:1044: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msvcrt/tests/file.c:1073: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/file.c:1073: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/printf.c:523: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/printf.c:525: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/scanf.c:39: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msvcrt/tests/scanf.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/scanf.c:165: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msvcrt/tests/string.c:40: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/string.c:281: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/string.c:282: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/string.c:283: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/string.c:310: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/msvcrt/tests/string.c:312: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/msvcrt/tests/string.c:314: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/msvcrt/tests/string.c:317: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/msvcrt/tests/string.c:630: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/time.c:203: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/time.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/time.c:230: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/tests/time.c:244: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:190: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:249: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:270: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:385: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:468: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:598: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:603: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/undname.c:1449: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/wcs.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/wcs.c:328: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/wcs.c:402: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/wcs.c:407: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvcrt/wcs.c:476: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvfw32/msvideo16.c:806: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msvfw32/msvideo16.c:832: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/msvfw32/msvideo_main.c:141: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/bsc.c:201: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/bsc.c:208: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/bsc.c:212: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/bsc.c:213: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/domdoc.c:193: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/domdoc.c:209: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/domdoc.c:210: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/domdoc.c:211: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/domdoc.c:972: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/regsvr.c:166: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/regsvr.c:262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/regsvr.c:285: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/regsvr.c:295: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/regsvr.c:295: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/regsvr.c:301: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msxml3/regsvr.c:380: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/domdoc.c:261: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msxml3/tests/domdoc.c:264: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msxml3/tests/domdoc.c:267: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/msxml3/tests/domdoc.c:311: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/domdoc.c:319: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/domdoc.c:341: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/domdoc.c:374: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/domdoc.c:3353: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/tests/domdoc.c:3354: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/tests/saxreader.c:138: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/saxreader.c:544: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/saxreader.c:546: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/xmldoc.c:37: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/tests/xmldoc.c:69: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/tests/xmldoc.c:100: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/tests/xmldoc.c:101: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/tests/xmldoc.c:101: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/tests/xmlelem.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/msxml3/xmldoc.c:587: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/xmldoc.c:602: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/xmldoc.c:603: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/msxml3/xmldoc.c:604: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/netapi32/nbt.c:188: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:188: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:195: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:219: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:250: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:254: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:459: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:487: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:523: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:554: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:557: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:622: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:643: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:884: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:893: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1683: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1693: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1728: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1777: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1784: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1802: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1839: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1936: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:1941: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:2068: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:2078: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/directory.c:2136: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/file.c:357: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/file.c:599: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/file.c:774: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/loader.c:485: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/loader.c:1277: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/loader.c:2601: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/dlls/ntdll/loader.c:2602: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/dlls/ntdll/path.c:1041: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/path.c:1048: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/relay.c:511: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/relay.c:655: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/relay.c:659: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/relay.c:664: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/rtlstr.c:105: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/rtlstr.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/rtlstr.c:1381: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/server.c:268: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/server.c:849: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/dlls/ntdll/server.c:869: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/string.c:166: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/string.c:175: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/dlls/ntdll/string.c:193: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/ntdll/sync.c:735: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/env.c:94: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:110: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:111: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:113: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:119: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:136: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:139: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:235: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:237: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:246: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:257: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/env.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:70: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:74: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:142: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:153: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:158: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:159: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:161: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:171: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:184: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:185: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:187: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:196: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:210: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:226: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:247: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:255: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:262: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:272: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:276: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:290: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:299: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:302: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:313: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:316: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:326: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:343: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:346: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:357: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:360: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/file.c:538: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:549: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:552: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:567: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:570: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/file.c:582: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ntdll/tests/path.c:80: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:155: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:211: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:220: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:226: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:276: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/path.c:277: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/rtl.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/rtl.c:191: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/rtl.c:193: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/rtlstr.c:1178: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/tests/rtlstr.c:1190: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/version.c:413: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/version.c:431: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/wcstring.c:266: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ntdll/wcstring.c:271: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/objsel/regsvr.c:154: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/objsel/regsvr.c:248: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/objsel/regsvr.c:286: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/objsel/regsvr.c:427: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/odbc32/proxyodbc.c:214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/odbc32/proxyodbc.c:342: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/odbc32/proxyodbc.c:342: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/odbc32/proxyodbc.c:575: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/odbc32/proxyodbc.c:577: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/odbc32/proxyodbc.c:578: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/datacache.c:374: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/datacache.c:378: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/datacache.c:379: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/datacache.c:385: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/datacache.c:394: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/datacache.c:395: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/ole16.c:296: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/ole16.c:599: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/ole2.c:2831: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/ole32_main.c:127: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/ole32/ole32_main.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/regsvr.c:140: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/regsvr.c:236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/regsvr.c:259: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/regsvr.c:386: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/stg_prop.c:367: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/stg_prop.c:531: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/stg_prop.c:1533: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/storage32.c:3456: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/storage32.c:3461: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/storage32.c:3472: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/storage32.c:3479: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/storage32.c:7244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/storage32.c:7249: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/storage32.c:7605: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/clipboard.c:315: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/hglobalstream.c:52: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:68: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:70: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:270: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:272: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/hglobalstream.c:281: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:284: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/hglobalstream.c:284: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:290: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/hglobalstream.c:293: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ole32/tests/marshal.c:2236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/marshal.c:2236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/marshal.c:2241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/moniker.c:906: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/dlls/ole32/tests/ole2.c:1196: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/dlls/ole32/tests/storage32.c:723: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/usrmarshal.c:163: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ole32/tests/usrmarshal.c:225: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/ole2disp.c:90: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/ole2disp.c:212: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/regsvr.c:136: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/regsvr.c:232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/regsvr.c:255: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/tests/safearray.c:1571: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/tests/safearray.c:1572: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/tests/safearray.c:1588: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/tests/safearray.c:1593: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/tests/typelib.c:934: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/oleaut32/tmarshal.c:73: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/tmarshal.c:308: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/dlls/oleaut32/typelib.c:1057: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/typelib.c:1059: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/typelib.c:1061: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/typelib.c:1063: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/typelib.c:1097: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oleaut32/typelib.c:3027: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/oledlg/pastespl.c:80: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/opengl32/wgl.c:266: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/opengl32/wgl.c:267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/opengl32/wgl.c:653: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/opengl32/wgl.c:670: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/psapi/psapi_main.c:431: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/psapi/tests/psapi_main.c:152: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/psapi/tests/psapi_main.c:195: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/psapi/tests/psapi_main.c:211: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/psapi/tests/psapi_main.c:228: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/qcap/v4l.c:549: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/qedit/regsvr.c:99: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/qedit/regsvr.c:122: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/qedit/regsvr.c:257: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/qmgr/qmgr.h:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/qmgr/tests/job.c:301: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/quartz/regsvr.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/quartz/regsvr.c:297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/quartz/regsvr.c:320: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/quartz/regsvr.c:750: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/editor.c:1605: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/editor.c:3128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/editor.c:4516: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/para.c:411: [1] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source is a constant character. wine-git/dlls/riched20/para.c:413: [1] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. Risk is low because the source is a constant character. wine-git/dlls/riched20/tests/editor.c:200: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:298: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:299: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1249: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1276: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1529: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/riched20/tests/editor.c:1533: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1580: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/riched20/tests/editor.c:1584: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1621: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/riched20/tests/editor.c:1625: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1687: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1838: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/riched20/tests/editor.c:1842: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1890: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:1944: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:2012: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:2063: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3162: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3175: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3188: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3611: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3620: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3630: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3644: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:3733: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:4440: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:4510: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:4581: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:4593: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:4955: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:4960: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:5000: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:5005: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:5012: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/tests/editor.c:5017: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:301: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:310: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:312: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:315: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:340: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:382: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:385: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:388: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:414: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:416: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:418: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:439: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:444: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:446: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:448: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:457: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:460: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:480: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:485: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:496: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:511: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:517: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:522: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:524: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:534: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:538: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:542: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:594: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched20/writer.c:607: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/riched32/tests/editor.c:162: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:288: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:329: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:342: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:356: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:397: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:398: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/riched32/tests/editor.c:658: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/cpsf.c:226: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/rpcrt4/cpsf.c:231: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/cpsf.c:234: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/rpcrt4/cpsf.c:235: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/cpsf.c:245: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/rpcrt4/cpsf.c:251: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/cpsf.c:254: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/cpsf.c:255: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/cpsf.c:292: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/rpcrt4/cpsf.c:300: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/rpcrt4/ndr_marshall.c:1760: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/ndr_marshall.c:1861: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:51: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:311: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:311: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:416: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:438: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:471: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:472: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:473: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:474: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:475: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.c:634: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_binding.h:92: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/rpcrt4/rpc_binding.h:161: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/rpcrt4/rpc_epmap.c:217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_message.c:258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_message.c:273: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:266: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:266: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:291: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:291: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:312: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:312: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:363: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:363: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:449: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:450: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:680: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpc_transport.c:1016: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/rpcrt4/rpc_transport.c:1096: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/rpcrt4/rpc_transport.c:1350: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/rpcrt4/rpc_transport.c:1651: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/rpcrt4_main.c:556: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1673: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1681: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1683: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1747: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1755: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/ndr_marshall.c:1757: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/server.c:65: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/server.c:103: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/server.c:109: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/server.c:759: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/server.c:760: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rpcrt4/tests/server.c:1138: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/rsaenh.c:3071: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/rsaenh.c:3075: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:39: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:82: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/rsaenh/tests/rsaenh.c:545: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:559: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:601: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:615: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:651: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:665: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:707: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:721: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:1902: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/rsaenh/tests/rsaenh.c:1921: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/sane.ds/sane_main.c:576: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/sane.ds/sane_main.c:591: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/sane.ds/sane_main.c:592: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/sane.ds/sane_main.c:595: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/dispatcher.c:166: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/secur32/dispatcher.c:288: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/secur32/ntlm.c:954: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/ntlm.c:957: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/ntlm.c:1240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:589: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:591: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:593: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:802: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:804: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:806: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:944: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:946: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:948: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1159: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1161: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1163: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1197: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1238: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/secur32/tests/ntlm.c:1240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/fakedll.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/queue.c:382: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/queue.c:388: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/queue.c:388: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/setupapi/queue.c:389: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/setupcab.c:553: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/setupx_main.c:480: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/setupx_main.c:485: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/setupx_main.c:490: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/devinst.c:326: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/devinst.c:827: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/install.c:65: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/install.c:396: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/misc.c:53: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/misc.c:218: [1] (buffer) lstrcat: Does not check for buffer overflows when concatenating to destination. Risk is low because the source is a constant character. wine-git/dlls/setupapi/tests/misc.c:312: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/setupapi/tests/misc.c:321: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/setupapi/tests/parser.c:73: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/tests/parser.c:391: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/setupapi/tests/query.c:49: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/virtcopy.c:140: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/virtcopy.c:187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/setupapi/virtcopy.c:447: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/setupapi/virtcopy.c:729: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/setupapi/virtcopy.c:733: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shdocvw/tests/shortcut.c:61: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/clipboard.c:192: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/cpanelfolder.c:253: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/cpanelfolder.c:257: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/cpanelfolder.c:261: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/debughlp.c:163: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/debughlp.c:166: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/dialogs.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/dialogs.c:367: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/dialogs.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/pidl.c:1758: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/pidl.c:1767: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/pidl.c:1777: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/pidl.c:1787: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/pidl.c:2005: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/pidl.c:2008: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/regsvr.c:177: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/regsvr.c:273: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/regsvr.c:281: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/regsvr.c:295: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/regsvr.c:319: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shell.c:122: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shell.c:296: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shell.c:297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shell.c:372: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shell32_main.h:189: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shellole.c:608: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shellpath.c:611: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shellpath.c:710: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shellpath.c:2061: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_fs.c:1291: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_fs.c:1297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:399: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:403: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:403: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/shfldr_unixfs.c:425: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:515: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:597: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:622: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:704: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:724: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:1242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:1355: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shfldr_unixfs.c:1936: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/shv_bg_cmenu.c:302: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shellpath.c:652: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shellpath.c:835: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shellpath.c:868: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:80: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/tests/shlexec.c:82: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/tests/shlexec.c:103: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/tests/shlexec.c:148: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/tests/shlexec.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:333: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:337: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:337: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:337: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:339: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:352: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:360: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:380: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:413: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:440: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:463: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:502: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:938: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:938: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:938: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlexec.c:1021: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/tests/shlfileop.c:67: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfileop.c:68: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfileop.c:95: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/shell32/tests/shlfileop.c:100: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/shell32/tests/shlfileop.c:101: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/shell32/tests/shlfileop.c:326: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfileop.c:330: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfileop.c:331: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfileop.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfileop.c:373: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:139: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:140: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:1335: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:1339: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:1427: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:1429: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:1472: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/tests/shlfolder.c:1474: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:175: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:175: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:175: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:184: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:284: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/trash.c:284: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:119: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:135: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:203: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:229: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:587: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:662: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/shell32/xdg.c:756: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:756: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:765: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:765: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:798: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:800: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:849: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:849: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:854: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/shell32/xdg.c:858: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:864: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shell32/xdg.c:926: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/ordinal.c:574: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:649: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:813: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:919: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:976: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:2109: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:2495: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:2548: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:2550: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:3096: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:3811: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/path.c:3815: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/reg.c:1893: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/reg.c:1969: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/reg.c:2039: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/reg.c:2098: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/string.c:521: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/string.c:913: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/string.c:1265: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/string.c:1621: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/string.c:1672: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/ordinal.c:63: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/ordinal.c:112: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/ordinal.c:117: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/ordinal.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/ordinal.c:147: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/ordinal.c:158: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/path.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/path.c:202: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:88: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:89: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:90: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:96: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:96: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:96: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:97: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:97: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:97: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:168: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:168: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:169: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:169: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/shreg.c:233: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/tests/url.c:840: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/url.c:1364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/url.c:1366: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/url.c:1467: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/url.c:1489: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/shlwapi/url.c:1729: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/snmpapi/main.c:496: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/snmpapi/main.c:508: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/tapi32/assisted.c:69: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/urlmon/binding.c:170: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:171: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:172: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:642: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:645: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:647: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:648: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:648: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:649: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:654: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:658: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:658: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:667: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:843: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/binding.c:847: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/bindprot.c:256: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/bindprot.c:258: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/file.c:249: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/file.c:253: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/file.c:255: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/http.c:756: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/http.c:785: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/http.c:786: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/http.c:787: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/http.c:809: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/http.c:814: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/regsvr.c:138: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/regsvr.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/regsvr.c:257: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/regsvr.c:403: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/tests/misc.c:1433: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/tests/misc.c:1433: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/tests/misc.c:1434: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/urlmon/tests/protocol.c:536: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:546: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:1753: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:1823: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:1825: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:1830: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:1832: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/protocol.c:1832: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/urlmon/tests/url.c:811: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/user32/class.c:205: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/combo.c:1827: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/comm16.c:453: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/defwnd.c:764: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/desktop.c:79: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/desktop.c:82: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/dialog16.c:104: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/dialog16.c:117: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/dialog16.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/dialog16.c:253: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/dialog16.c:258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/dialog16.c:271: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/driver.c:59: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/user32/driver16.c:71: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/driver16.c:243: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/edit.c:1720: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/edit.c:1729: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/edit.c:4322: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/lstr.c:140: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/lstr.c:187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/lstr.c:224: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/lstr.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/lstr.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/menu.c:2171: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/menu.c:3649: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/network.c:195: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/network.c:197: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/network.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/spy.c:2114: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/dde.c:1333: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/edit.c:1556: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/edit.c:1602: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/edit.c:1623: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:585: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:633: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:640: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:689: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:698: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:720: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:745: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:794: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:796: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:808: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:830: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:871: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:883: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:923: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:939: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:943: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:975: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1113: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1150: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1169: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1170: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1197: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1307: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1311: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1329: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:1378: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1382: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/user32/tests/listbox.c:1382: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1383: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:1398: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:1439: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1443: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/dlls/user32/tests/listbox.c:1443: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/listbox.c:1444: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/listbox.c:1459: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/menu.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/menu.c:2183: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/menu.c:2184: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/menu.c:2255: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/menu.c:2256: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/sysparams.c:2258: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/user32/tests/text.c:193: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/text.c:204: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/text.c:294: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/tests/text.c:304: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/text.c:1034: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/text.c:1190: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/uitools.c:1593: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:667: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1435: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1716: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1781: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1785: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1787: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1844: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1862: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/user16.c:1863: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/win.c:2396: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winhelp.c:115: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winhelp.c:128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:784: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:789: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:831: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:836: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:907: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:1093: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/user32/winproc.c:1189: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/userenv/tests/userenv.c:135: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/userenv/tests/userenv.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/uxtheme/system.c:291: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/info.c:215: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/info.c:333: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/info.c:589: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:63: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:68: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/version/install.c:100: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/version/install.c:105: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:191: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:192: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:387: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:400: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:490: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/install.c:495: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/resource.c:212: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/resource.c:243: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/info.c:56: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/info.c:57: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/info.c:541: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/install.c:80: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/install.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/install.c:127: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/install.c:154: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/version/tests/install.c:163: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/vnbt.vxd/vnbt.c:93: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/alsa.c:55: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/alsa.h:153: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/midi.c:1155: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/midi.c:1155: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/midi.c:1220: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/midi.c:1220: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/mixer.c:423: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winealsa.drv/mixer.c:428: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winealsa.drv/mixer.c:713: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:171: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:198: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:199: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:201: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:202: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:207: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/wavein.c:228: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winealsa.drv/waveinit.c:221: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/waveinit.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/waveinit.c:410: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/waveinit.c:410: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winealsa.drv/waveinit.c:415: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winecoreaudio.drv/audio.c:540: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winecoreaudio.drv/audio.c:553: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winecoreaudio.drv/audio.c:555: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winecoreaudio.drv/audio.c:605: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winecoreaudio.drv/audio.c:607: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winecoreaudio.drv/midi.c:165: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winecoreaudio.drv/mixer.c:423: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winecoreaudio.drv/mixer.c:427: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:524: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/wined3d/arb_program_shader.c:653: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:662: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:664: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:673: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:685: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:694: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:705: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:715: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:730: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:771: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:774: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:857: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:1122: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/wined3d/arb_program_shader.c:1662: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/wined3d/arb_program_shader.c:1765: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/wined3d/arb_program_shader.c:1785: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:1808: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:2876: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/arb_program_shader.c:3325: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/directx.c:470: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/glsl_shader.c:121: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:143: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:332: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:351: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:3169: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:3248: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:3273: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:3277: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:3282: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/glsl_shader.c:3286: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/surface.c:1207: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wined3d/surface.c:2177: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wined3d/surface.c:2304: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/surface_gdi.c:181: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wined3d/wined3d_main.c:256: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/dosconf.c:267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/dosconf.c:307: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/dosconf.c:355: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/dosconf.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/dosconf.c:387: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/dosconf.c:439: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/int21.c:521: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/int21.c:522: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/int21.c:966: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/int21.c:3396: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/int21.c:3674: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:169: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:172: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:185: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:371: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:387: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:400: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:406: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:479: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:485: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winedos/module.c:486: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winedos/module.c:636: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineesd.drv/audio.c:120: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineesd.drv/audio.c:468: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wineesd.drv/audio.c:501: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wineesd.drv/audio.c:1706: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winejack.drv/audio.c:634: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winejack.drv/audio.c:931: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winejack.drv/audio.c:933: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winejack.drv/audio.c:965: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winejack.drv/audio.c:967: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winejack.drv/audio.c:1903: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winejoystick.drv/joystick.c:312: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winejoystick.drv/joystick.c:389: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/audio.c:1139: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineoss.drv/audio.c:1184: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineoss.drv/audio.c:2563: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/audio.c:2590: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/audio.c:2626: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/audio.c:2735: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/audio.h:50: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/midi.c:665: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wineoss.drv/mixer.c:1466: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineoss.drv/mixer.c:1478: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/afm.c:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/afm2c.c:194: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/builtin.c:422: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/download.c:120: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/download.c:253: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/download.c:355: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/escape.c:151: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/escape.c:421: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/font.c:95: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/glyphlist.c:80: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/graphics.c:132: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/init.c:556: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/init.c:594: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/init.c:650: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/init.c:650: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/mkagl.c:262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:193: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:269: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:284: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:331: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:379: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ppd.c:746: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:237: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:237: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:243: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:245: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:320: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:337: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:338: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:346: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:347: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:349: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:354: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:389: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:408: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:409: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:467: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:468: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:483: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:491: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:508: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:517: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:530: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:539: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:548: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:564: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:570: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:585: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:593: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:671: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:678: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:722: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:742: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:748: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:765: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:787: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/dlls/wineps.drv/ps.c:816: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:824: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:832: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:840: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:848: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:887: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/ps.c:943: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/truetype.c:550: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wineps.drv/type1.c:95: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1.c:101: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1.c:285: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1.c:285: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1.c:288: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1.c:292: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1.c:295: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:93: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:98: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/dlls/wineps.drv/type1afm.c:137: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:154: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:238: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:308: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:318: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type1afm.c:1145: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wineps.drv/type42.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:210: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:225: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:233: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:274: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:349: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:354: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:359: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wineps.drv/type42.c:365: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/clipboard.c:987: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/clipboard.c:1247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/clipboard.c:1464: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/clipboard.c:1718: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/dlls/winex11.drv/clipboard.c:1987: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/dlls/winex11.drv/event.c:1133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/event.c:1156: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/event.c:1157: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/opengl.c:1711: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/opengl.c:3219: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winex11.drv/settings.c:181: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/wintab.c:585: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xdnd.c:278: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/dlls/winex11.drv/xdnd.c:448: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xdnd.c:468: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xdnd.c:586: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:543: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:579: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:600: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:662: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:671: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:680: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:689: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:737: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1379: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winex11.drv/xfont.c:1483: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1485: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1553: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1677: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/winex11.drv/xfont.c:1830: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1830: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1830: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1852: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:1855: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2006: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2039: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2041: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2167: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winex11.drv/xfont.c:2168: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winex11.drv/xfont.c:2175: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winex11.drv/xfont.c:2189: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winex11.drv/xfont.c:2242: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2309: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2347: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xfont.c:2878: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winex11.drv/xrender.c:749: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winex11.drv/xrender.c:765: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winhttp/request.c:749: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winhttp/request.c:979: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winhttp/request.c:1015: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winhttp/request.c:1077: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winhttp/request.c:1086: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winhttp/request.c:1103: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winhttp/request.c:1106: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winhttp/tests/winhttp.c:131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:1233: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/ftp.c:2101: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:2483: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:2484: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:2484: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:3438: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:3465: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/ftp.c:3507: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/http.c:1348: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/http.c:1604: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1652: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1715: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1719: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1728: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1731: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1734: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:1737: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wininet/http.c:3640: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/http.c:3673: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:795: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:1192: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:2699: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:2699: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:2701: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:3337: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:3412: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:3417: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:3430: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:3443: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/internet.c:3444: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/http.c:1180: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/http.c:1183: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/http.c:2116: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/http.c:2117: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/internet.c:159: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/internet.c:162: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/internet.c:167: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/internet.c:175: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/internet.c:185: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:122: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:122: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:123: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:125: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:126: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:126: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:127: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:132: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:132: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:135: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:140: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:141: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:432: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:435: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:438: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:440: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:442: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:444: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:642: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:643: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:647: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:653: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:680: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:684: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:705: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:709: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:720: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:725: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:735: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:740: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:749: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:753: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:766: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/tests/url.c:770: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:911: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:977: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:1030: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:2364: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:2369: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:2379: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/urlcache.c:2666: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wininet/utility.c:287: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winmm/lolvldrv.c:634: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winmm/mmio.c:423: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winmm/mmsystem.c:2645: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winmm/tests/mixer.c:50: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/mixer.c:58: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/mixer.c:161: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/mixer.c:169: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:280: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:285: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:290: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:295: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:300: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:305: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:310: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:315: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:333: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:338: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:343: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:348: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/tests/wave.c:355: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/dlls/winmm/time.c:231: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winspool.drv/info.c:407: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:407: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:407: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:413: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:500: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:500: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:503: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:507: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:514: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:581: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:616: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:624: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:626: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:631: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:631: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:635: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:639: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:646: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:738: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:738: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:741: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:7657: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/info.c:7841: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winspool.drv/info.c:7882: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/winspool.drv/tests/info.c:1224: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/tests/info.c:2128: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/tests/info.c:2130: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/tests/info.c:2132: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/tests/info.c:2134: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/winspool.drv/tests/info.c:2136: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wintrust/asn.c:1478: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wintrust/asn.c:1482: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wintrust/asn.c:1507: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/dlls/wintrust/asn.c:1508: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wintrust/asn.c:1531: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wintrust/asn.c:1547: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/bind.c:118: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/bind.c:210: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/bind.c:539: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/bind.c:632: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/compare.c:125: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/compare.c:258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/compare.c:394: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/compare.c:505: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:151: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:154: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:159: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:170: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:176: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:184: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/init.c:189: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wldap32/wldap32.h:30: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/wnaspi32/aspi.c:319: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/wnaspi32/winaspi16.c:297: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/dlls/ws2_32/async.c:160: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:177: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:190: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:249: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:274: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:301: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:301: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:328: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:330: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:542: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/async.c:548: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:590: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:3493: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:3972: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:3986: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4007: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4018: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4036: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4045: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4060: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4061: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4070: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4074: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4542: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket.c:4740: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:66: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:82: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:157: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:175: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:186: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:202: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:213: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/socket16.c:217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/dlls/ws2_32/tests/protocol.c:58: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/msvcrt/io.h:173: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/include/msvcrt/io.h:177: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/include/msvcrt/mbstring.h:98: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/msvcrt/mbstring.h:100: [1] (buffer) _mbsnbcat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/msvcrt/mbstring.h:104: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/msvcrt/stdio.h:155: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/include/msvcrt/stdio.h:169: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/include/msvcrt/stdio.h:170: [1] (buffer) getchar: Check buffer boundaries if used in a loop. wine-git/include/msvcrt/string.h:85: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/msvcrt/string.h:86: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/msvcrt/string.h:88: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/msvcrt/string.h:114: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/msvcrt/string.h:115: [1] (buffer) wcsncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/msvcrt/string.h:117: [1] (buffer) wcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/msvcrt/sys/stat.h:164: [1] (access) umask: Ensure that umask is given most restrictive possible setting (e.g., 066 or 077). wine-git/include/msvcrt/wchar.h:404: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/msvcrt/wchar.h:405: [1] (buffer) wcsncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/msvcrt/wchar.h:407: [1] (buffer) wcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/rpcndr.h:108: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:39: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:39: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:67: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:67: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:75: [1] (buffer) _gettc: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:75: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:75: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:76: [1] (buffer) getchar: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:76: [1] (buffer) getchar: Check buffer boundaries if used in a loop. wine-git/include/tchar.h:110: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:110: [1] (buffer) _mbslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:110: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:121: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:121: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:121: [1] (buffer) wcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/tchar.h:124: [1] (buffer) _tcsncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/tchar.h:124: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/tchar.h:124: [1] (buffer) _mbsnbcat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/tchar.h:124: [1] (buffer) wcsncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/tchar.h:125: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/tchar.h:125: [1] (buffer) wcsncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/tchar.h:129: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/tchar.h:129: [1] (buffer) wcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/tchar.h:131: [1] (buffer) _tcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/tchar.h:131: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/tchar.h:131: [1] (buffer) _mbsnbcpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/tchar.h:131: [1] (buffer) wcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/winbase.h:2187: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/winbase.h:2216: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/winbase.h:2217: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/winbase.h:2225: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/winbase.h:2225: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/windowsx.h:1413: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/include/windowsx.h:1415: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/include/windowsx.h:1417: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/include/wine/port.h:351: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/include/wine/port.h:465: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/include/wine/port.h:465: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/include/wine/server_protocol.h:1537: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/include/wine/test.h:417: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:250: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:441: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:669: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:714: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:780: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:814: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:819: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:1006: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:1046: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:1084: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:1116: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/getopt.c:1120: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/mkstemps.c:85: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/port/pread.c:44: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/libs/port/usleep.c:27: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/libs/wine/config.c:94: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:103: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:110: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:111: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:153: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:220: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:337: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:494: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:494: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:500: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/config.c:502: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/libs/wine/debug.c:97: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/debug.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/debug.c:281: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:119: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:177: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:186: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:191: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:202: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:205: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:572: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/libs/wine/loader.c:718: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:754: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wine/loader.c:790: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppl.yy.c:1385: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/libs/wpp/ppl.yy.c:2183: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppl.yy.c:3285: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppl.yy.c:3743: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppl.yy.c:3816: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppl.yy.c:3878: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppl.yy.c:4295: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:1142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:1865: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:2590: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:2590: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:2605: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:2625: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:2654: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/ppy.tab.c:2655: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:110: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:243: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:252: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:345: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:366: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:391: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:406: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:406: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/libs/wpp/preproc.c:408: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/libs/wpp/wpp.c:181: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/loader/freebsd.c:41: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/loader/glibc.c:85: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/loader/glibc.c:133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/loader/kthread.c:68: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/cmdlgtst/cmdlgtst.c:319: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/cmdlgtst/cmdlgtst.c:320: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/eject/eject.c:132: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/net/net.c:57: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/net/net.c:67: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/net/net.c:80: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/notepad/main.c:600: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/dialog.c:286: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/dialog.c:368: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/dialog.c:605: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/progman/dialog.c:607: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/progman/group.c:206: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/group.c:207: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/grpfile.c:54: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/grpfile.c:57: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/progman/grpfile.c:58: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/progman/main.c:470: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/progman/program.c:136: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/program.c:137: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/program.c:138: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/progman/program.c:139: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/regedit/childwnd.c:121: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/listview.c:72: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:258: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:264: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:670: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/programs/regedit/regproc.c:865: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:924: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:1001: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:1001: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:1002: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/regproc.c:1108: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regedit/treeview.c:80: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regsvr32/regsvr32.c:202: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regsvr32/regsvr32.c:202: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regsvr32/regsvr32.c:204: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/regsvr32/regsvr32.c:209: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/rundll32/rundll32.c:118: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/rundll32/rundll32.c:123: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/rundll32/rundll32.c:127: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/graphctl.c:295: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/graphctl.c:300: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/graphctl.c:309: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/graphctl.c:314: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/graphctl.c:323: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/perfdata.c:359: [1] (buffer) wcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/taskmgr/perfdata.c:396: [1] (buffer) wcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/taskmgr/procpage.c:56: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/procpage.c:58: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/taskmgr/procpage.c:64: [1] (buffer) _tcsncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/taskmgr/procpage.c:126: [1] (buffer) _tcslen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/wineboot/wineboot.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/wineboot/wineboot.c:109: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/wineboot/wineboot.c:123: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/wineboot/wineboot.c:131: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winecfg/appdefaults.c:375: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/appdefaults.c:414: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/appdefaults.c:429: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/appdefaults.c:433: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/audio.c:115: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:140: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/programs/winecfg/audio.c:167: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:168: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winecfg/audio.c:178: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/programs/winecfg/audio.c:181: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winecfg/audio.c:185: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:186: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:199: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:200: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:213: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/programs/winecfg/audio.c:522: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/audio.c:581: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/programs/winecfg/drive.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drive.c:213: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drive.c:332: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drive.c:349: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/drive.c:353: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drive.c:354: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drive.c:368: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drive.c:426: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/drive.c:444: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/drive.c:503: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/drive.c:520: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/drivedetect.c:102: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/drivedetect.c:283: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/drivedetect.c:285: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winecfg/libraries.c:114: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:244: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winecfg/libraries.c:267: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:271: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:306: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:370: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/libraries.c:374: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winecfg/libraries.c:418: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/theme.c:868: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:306: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:307: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:309: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:310: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:314: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:315: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:426: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:427: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:431: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:432: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:437: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:438: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:452: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:453: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:455: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:456: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:591: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:592: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:679: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:679: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.c:681: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winecfg/winecfg.h:126: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/wineconsole/wineconsole.c:849: [1] (buffer) MultiByteToWideChar: Requires maximum length in CHARACTERS, not bytes. Risk is very low, the length appears to be in characters not bytes. wine-git/programs/winedbg/be_alpha.c:102: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/be_i386.c:211: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/be_i386.c:635: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/be_i386.c:683: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/be_ppc.c:115: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/break.c:266: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:1467: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:2227: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:2227: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:2238: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:2238: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:3296: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:3417: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/dbg.tab.c:3422: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/debug.yy.c:910: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/debug.yy.c:913: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/debug.yy.c:1018: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/debug.yy.c:1308: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/debug.yy.c:2409: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/debug.yy.c:2680: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/debugger.h:240: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/debugger.h:457: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/expr.c:790: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/expr.c:796: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/expr.c:799: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/expr.c:806: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/expr.c:813: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:665: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/gdbproxy.c:745: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:761: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winedbg/gdbproxy.c:787: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:792: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:808: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:808: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:808: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:810: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:839: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:864: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:898: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/gdbproxy.c:1330: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/gdbproxy.c:1486: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1507: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1537: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1549: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1613: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1633: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1638: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:1757: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/gdbproxy.c:2109: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/memory.c:243: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/memory.c:247: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/memory.c:269: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/memory.c:634: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/memory.c:637: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/memory.c:640: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/memory.c:643: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/memory.c:655: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/memory.c:666: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/source.c:59: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/source.c:62: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/source.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/source.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/source.c:205: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/source.c:208: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/source.c:210: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winedbg/stack.c:155: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/winedbg/symbol.c:105: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/symbol.c:214: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/symbol.c:658: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/symbol.c:681: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_active.c:211: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_active.c:212: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_active.c:441: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/tgt_active.c:444: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winedbg/tgt_active.c:860: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_active.c:939: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/programs/winedbg/tgt_minidump.c:206: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_minidump.c:240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_minidump.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/tgt_minidump.c:248: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/winedbg.c:323: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winedbg/winedbg.c:421: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winemenubuilder/winemenubuilder.c:529: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:607: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:744: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:744: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:819: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:829: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:834: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:862: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemenubuilder/winemenubuilder.c:863: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winemine/main.c:367: [1] (buffer) lstrcpyn: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/winemine/main.c:368: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winetest/main.c:166: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winetest/main.c:207: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/programs/winetest/main.c:644: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winevdm/winevdm.c:170: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/winevdm/winevdm.c:174: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/winevdm/winevdm.c:176: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/winevdm/winevdm.c:177: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/winevdm/winevdm.c:350: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhelp/macro.lex.yy.c:593: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/programs/winhelp/macro.lex.yy.c:795: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhelp/macro.lex.yy.c:1550: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhelp/macro.lex.yy.c:1861: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhelp/macro.lex.yy.c:1921: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhelp/macro.lex.yy.c:1946: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:442: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:445: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:629: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1004: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1254: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1478: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1803: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1820: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1898: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1912: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/hlpfile.c:1920: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/macro.c:902: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/macro.lex.yy.c:600: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/programs/winhlp32/macro.lex.yy.c:803: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/macro.lex.yy.c:1559: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/macro.lex.yy.c:1870: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/macro.lex.yy.c:1930: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/macro.lex.yy.c:1955: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:81: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:83: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:85: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:87: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:602: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:1314: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:1327: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:1331: [1] (buffer) strncpy: Easily used incorrectly; doesn't always \0-terminate or check for invalid pointers. wine-git/programs/winhlp32/winhelp.c:1333: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:1561: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:1610: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/winhlp32/winhelp.c:1617: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/programs/wordpad/wordpad.c:150: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/wordpad/wordpad.c:152: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/programs/wordpad/wordpad.c:155: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/change.c:544: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/change.c:618: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/change.c:624: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/server/change.c:637: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/change.c:678: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/change.c:681: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/change.c:772: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/fd.c:1553: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1027: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1116: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1174: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1231: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1279: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/registry.c:1555: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/request.c:317: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/request.c:336: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/request.c:647: [1] (obsolete) usleep: This C routine is considered obsolete (as opposed to the shell command by the same name). The interaction of this function with SIGALRM and other timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. wine-git/server/request.c:710: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/server/request.c:787: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/signal.c:170: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/sock.c:186: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/server/trace.c:1642: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/fnt2bdf.c:133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2bdf.c:452: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2bdf.c:491: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/fnt2bdf.c:501: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/fnt2bdf.c:539: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/fnt2bdf.c:603: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/fnt2fon.c:131: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/tools/fnt2fon.c:137: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:149: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:158: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:234: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:235: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:236: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:237: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:243: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:244: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:272: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. wine-git/tools/fnt2fon.c:275: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/fnt2fon.c:289: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/make_ctests.c:95: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:159: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:160: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:194: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:200: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:350: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:352: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:374: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:392: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:394: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:426: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:429: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:469: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:678: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:787: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:793: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:882: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:976: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/makedep.c:977: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:470: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:515: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:516: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:620: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:627: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:635: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:644: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:680: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:683: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:741: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:742: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:743: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:744: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:750: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:751: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/sfnt2fnt.c:772: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/header.c:1066: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/parser.tab.c:2153: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/parser.tab.c:5711: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/parser.yy.c:796: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/tools/widl/parser.yy.c:1874: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/typelib.c:277: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/widl/utils.c:152: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/utils.c:166: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/utils.c:192: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/utils.c:240: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/write_msft.c:297: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/write_msft.c:347: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/widl/write_msft.c:1232: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:198: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:198: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:278: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:280: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:284: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:411: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:534: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:537: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:538: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:538: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:563: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:568: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:568: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/import.c:575: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/main.c:143: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/main.c:200: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/main.c:211: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/main.c:217: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/main.c:223: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/parser.c:479: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/res16.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/res16.c:181: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/winebuild/res16.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/res32.c:237: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/winebuild/spec16.c:168: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec16.c:316: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec16.c:334: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec32.c:133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec32.c:216: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec32.c:241: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec32.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/spec32.c:563: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:94: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:95: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:191: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:192: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:199: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:248: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:248: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:250: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/winebuild/utils.c:305: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:305: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winebuild/utils.c:305: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/debug.c:694: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/debug.c:698: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/debug.c:705: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/debug.c:706: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/debug.c:711: [1] (buffer) strncat: Easily used incorrectly (e.g., incorrectly computing the correct maximum size to add). Consider strlcat or automatically resizing strings. wine-git/tools/winedump/dump.c:103: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/dump.c:161: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/dump.c:168: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/dump.c:169: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/dump.c:170: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/dump.c:174: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/dump.c:193: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/winedump/dump.c:268: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/winedump/lib.c:70: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/lnk.c:350: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/tools/winedump/main.c:46: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/main.c:144: [1] (buffer) fscanf: it's unclear if the %s limit in the format string is small enough. Check that the limit is sufficiently small, or use a different input function. wine-git/tools/winedump/main.c:147: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/main.c:275: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/main.c:278: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/main.c:329: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/minidump.c:271: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/minidump.c:273: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/minidump.c:275: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:41: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:72: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:125: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:126: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:142: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:145: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/misc.c:202: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/tools/winedump/msc.c:180: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/tools/winedump/msc.c:187: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/winedump/msc.c:247: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:274: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:330: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:338: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:361: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:385: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:476: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:1104: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:1105: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:1199: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msc.c:1201: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/msmangle.c:499: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/ne.c:298: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/winedump/output.c:71: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/tools/winedump/output.c:502: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/tools/winedump/pdb.c:276: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pdb.c:291: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pdb.c:414: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pdb.c:415: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pdb.c:536: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pdb.c:648: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pe.c:1084: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/pe.c:1352: [1] (port) snprintf: On some very old systems, snprintf is incorrectly implemented and permits buffer overflows; there are also incompatible standard definitions of it. Check it during installation, or use something else. wine-git/tools/winedump/search.c:130: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/search.c:131: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/search.c:146: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/symbol.c:303: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/symbol.c:304: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winedump/symbol.c:307: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/utils.c:71: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/utils.c:72: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/utils.c:213: [1] (buffer) read: Check buffer boundaries if used in a loop. wine-git/tools/winegcc/winegcc.c:198: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/winegcc.c:204: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/winegcc.c:468: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/winegcc.c:703: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/winegcc.c:906: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/winegcc/winegcc.c:911: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/mcl.c:204: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/mcy.tab.c:1034: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/utils.c:113: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/utils.c:124: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/utils.c:171: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/wmc.c:156: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wmc/wmc.c:163: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/wrc/genres.c:1848: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/genres.c:1848: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/genres.c:1849: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/genres.c:1851: [1] (buffer) strcpy: Does not check for buffer overflows when copying to destination. Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk is low because the source is a constant character. wine-git/tools/wrc/genres.c:1853: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/wrc/genres.c:1855: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. wine-git/tools/wrc/parser.tab.c:1778: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/parser.tab.c:5616: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/parser.yy.c:1047: [1] (buffer) getc: Check buffer boundaries if used in a loop. wine-git/tools/wrc/parser.yy.c:1262: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/parser.yy.c:2499: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/parser.yy.c:2856: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/utils.c:133: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/utils.c:144: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/utils.c:189: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/wrc.c:268: [1] (buffer) strlen: Does not handle strings that are not \0-terminated (it could cause a crash if unprotected). wine-git/tools/wrc/wrc.c:275: [1] (buffer) strcat: Does not check for buffer overflows when concatenating to destination. Consider using strncat or strlcat (warning, strncat is easily misused). Risk is low because the source is a constant character. Hits = 16350 Lines analyzed = 2450790 in 97.34 seconds (25307 lines/second) Physical Source Lines of Code (SLOC) = 1845858 Hits@level = [0] 0 [1] 3139 [2] 8768 [3] 1733 [4] 2681 [5] 29 Hits@level+ = [0+] 16350 [1+] 16350 [2+] 13211 [3+] 4443 [4+] 2710 [5+] 29 Hits/KSLOC@level+ = [0+] 8.85767 [1+] 8.85767 [2+] 7.15711 [3+] 2.40701 [4+] 1.46815 [5+] 0.0157109 Minimum risk level = 1 Not every hit is necessarily a security vulnerability. There may be other security vulnerabilities; review your code!