Does any common debugger allow to turn off this automatic initialization of uninitialized vars and members, so that it would be possible to actually see those with debugger?
I'm using gdb right now, the language in my case is C with GCC if it matters.
Edit: this is about local stack variables.
Edit 2: i wrote this question after i found a local structure with garbage in its members which caused crashes. Those crashes were not happening under debugger, which means, garbage or not (maybe special values for uninitialized data), the debugger treats those in a special way and prevents crash. I'd like to find out if this is a feature that can be disabled in any common debugger, gdb most preferably.