diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-09-10 16:00:30 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-09-10 16:00:30 -0700 |
commit | 39ed446e1513c52f795d090fc9b1f173c0912d6a (patch) | |
tree | 6e47fae59fd77f52b44fa3d1bf51871152e9a363 /common/parse.h | |
parent | 4e58a5a3c022f90ce9219e126893b721fee2b90a (diff) | |
download | xrdp-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.h | 3 |
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) /******************************************************************************/ |