Fix NULL string printing in printf (#8800)
authorJan Vorlicek <janvorli@microsoft.com>
Wed, 4 Jan 2017 21:05:43 +0000 (22:05 +0100)
committerGitHub <noreply@github.com>
Wed, 4 Jan 2017 21:05:43 +0000 (22:05 +0100)
commitedc1320180a3d68a16855da8da82f01871bf3a1d
tree029978c089a211cb6902530859ab44685854a1f1
parent06c78a5f7b27efeb7d462b1ba1c139f320d3fb80
Fix NULL string printing in printf (#8800)

The functions implementing various printf flavors in PAL were not handling
correctly the case when a string pointer passed to them for %S and %s formats
was NULL. Instead of printing `(null)`, they were crashing.

This change fixes the problem and also adds PAL tests to verify it is working
properly.
28 files changed:
src/pal/src/cruntime/printfcpp.cpp
src/pal/tests/palsuite/c_runtime/_snprintf_s/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/_snprintf_s/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/_snwprintf_s/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/_snwprintf_s/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/_vsnprintf_s/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/_vsnprintf_s/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/_vsnwprintf_s/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/_vsnwprintf_s/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/fprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/fprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/fwprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/fwprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/printf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/printf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/sprintf_s/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/sprintf_s/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/swprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/swprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/vfprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/vfprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/vprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/vprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/vsprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/vsprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/vswprintf/test2/test2.cpp
src/pal/tests/palsuite/c_runtime/vswprintf/test3/test3.cpp
src/pal/tests/palsuite/c_runtime/wprintf/test2/test2.cpp