Skip to content
Snippets Groups Projects
Commit d00b0388 authored by Rene Brun's avatar Rene Brun
Browse files

From Philippe:

This patch prevent the pattern matching function to read passed the end of the input string.


git-svn-id: http://root.cern.ch/svn/root/trunk@8085 27541ba8-7e3a-0410-8455-c3a389f83636
parent 2162a37c
No related branches found
No related tags found
No related merge requests found
// @(#)root/base:$Name: $:$Id: Match.cxx,v 1.1.1.1 2000/05/16 17:00:39 rdm Exp $
// @(#)root/base:$Name: $:$Id: Match.cxx,v 1.2 2002/09/30 17:31:46 rdm Exp $
// Author: Fons Rademakers 04/08/95
/*************************************************************************
......@@ -386,8 +386,10 @@ static int omatch(const char** strp,
break;
}
++*strp;
--*slenp;
if (*slenp) {
++*strp;
--*slenp;
}
return 2;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment