Commit 1f7384eb authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: appease valgrind concerning syscalls with uninitialized values

No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -1429,7 +1429,7 @@ void do_toggle_void(void)
void disable_extended_io(void)
{
#ifdef HAVE_TERMIOS_H
struct termios term;
struct termios term = {0};
tcgetattr(0, &term);
term.c_lflag &= ~IEXTEN;
......@@ -1443,7 +1443,7 @@ void disable_extended_io(void)
void disable_signals(void)
{
#ifdef HAVE_TERMIOS_H
struct termios term;
struct termios term = {0};
tcgetattr(0, &term);
term.c_lflag &= ~ISIG;
......@@ -1457,7 +1457,7 @@ void disable_signals(void)
void enable_signals(void)
{
#ifdef HAVE_TERMIOS_H
struct termios term;
struct termios term = {0};
tcgetattr(0, &term);
term.c_lflag |= ISIG;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment