Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
warning C28649: Automatic or Global Stack Arrays are never NULL
Stack-based arrays can never be NULL. However, most of the time the intention is to check a particular element (mostly the first element) against NULL or for a null character. Due to an error of omission, the programmer misses the dereferencing (*) operator that results in the array being checked instead.