summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libmisc/shell/shell.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 3c357a1ca9..1e5962b1e3 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -320,7 +320,10 @@ static int rtems_shell_line_editor(
int cmd = -1;
int inserting = 1;
int in_fileno = fileno(in);
- int out_fileno = fileno(out);
+ int out_fileno;
+
+ _Assert(out != NULL);
+ out_fileno = fileno(out);
/*
* Only this task can use this file descriptor because calling