]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix OOB read
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 26 Sep 2019 08:50:31 +0000 (09:50 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 26 Sep 2019 08:50:31 +0000 (09:50 +0100)
src/libserver/url.c

index ec43404f999ebae7bb13b24dedf0cbf6d5785823..1ea68dedea95eff311044f88d9678d0d3bf01ced 100644 (file)
@@ -2235,7 +2235,7 @@ url_file_start (struct url_callback_data *cb,
 {
        match->m_begin = pos;
 
-       if (pos > cb->begin - 1) {
+       if (pos > cb->begin) {
                match->st = *(pos - 1);
        }
        else {