summaryrefslogtreecommitdiffstats
path: root/common/parse.h
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2013-09-10 16:00:30 -0700
committerJay Sorg <jay.sorg@gmail.com>2013-09-10 16:00:30 -0700
commit39ed446e1513c52f795d090fc9b1f173c0912d6a (patch)
tree6e47fae59fd77f52b44fa3d1bf51871152e9a363 /common/parse.h
parent4e58a5a3c022f90ce9219e126893b721fee2b90a (diff)
downloadxrdp-proprietary-39ed446e1513c52f795d090fc9b1f173c0912d6a.tar.gz
xrdp-proprietary-39ed446e1513c52f795d090fc9b1f173c0912d6a.zip
VUL: fix some possible buffer overruns
Diffstat (limited to 'common/parse.h')
-rw-r--r--common/parse.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/parse.h b/common/parse.h
index 3ec37104..69a57ff8 100644
--- a/common/parse.h
+++ b/common/parse.h
@@ -56,6 +56,9 @@ struct stream
#define s_check_rem(s, n) ((s)->p + (n) <= (s)->end)
/******************************************************************************/
+#define s_check_rem_out(s, n) ((s)->p + (n) <= (s)->data + (s)->size)
+
+/******************************************************************************/
#define s_check_end(s) ((s)->p == (s)->end)
/******************************************************************************/