aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nnn.c b/src/nnn.c
index e646393..f915ca7 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -4258,7 +4258,7 @@ static void readpipe(int fd, char **path, char **lastname, char **lastdir)
ctx = r + 1;
} else {
ctx = g_buf[0] - '0';
- if (ctx > CTX_MAX)
+ if (ctx < 0 || ctx > CTX_MAX)
return;
}