How do I disable error C4700 "Uninitialized local variable used"?

I can't start a working project under Visual Studio 2013 because of this error. The project is old, it was made under Visual Studio 6.0. Apparently, there was a warning instead of an error.

There are many variables. Maybe it's still possible to work around this error without initializing them all?

Author: Arhadthedev, 2015-02-02

1 answers

In project properties - configuration properties - C / C++ - code generation - security check-Disable security check (/GS-)

 1
Author: nezzo, 2015-02-02 21:34:35