Compiler Warning (level 3) C4748
/GS can not protect parameters and local variables from local buffer overrun because optimizations are disabled in function
/GS (Buffer Security Check), which is enabled by default, cannot protect parameters and local variables from local buffer overrun in a function unless the function has optimizations enabled.
The compiler will disable optimizations if a function has inline assembly code containing flow of control (jmp or jcc, for example) statements.
Enable optimizations to resolve this warning, and to allow /GS to protect parameters and local variables from local buffer overrun.