summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-05-13 02:58:45 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-05-13 02:58:45 +0000
commit0e3bd92f71546963d9670fef1b421ba602af56ce (patch)
tree36db176209ceca1b4a5e587f8a2dcecaa58ebee5
parent8125878cfa7aaacafba2f509e1122d9cd0ff1598 (diff)
Fixed buffer overflow with longer driver names.
-rw-r--r--src/tools/regrep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/regrep.c b/src/tools/regrep.c
index 1f0b456854a..f5609ede11a 100644
--- a/src/tools/regrep.c
+++ b/src/tools/regrep.c
@@ -59,7 +59,7 @@ typedef struct _summary_file summary_file;
struct _summary_file
{
summary_file * next;
- char name[10];
+ char name[20];
char source[100];
UINT8 status[MAX_COMPARES];
UINT8 matchbitmap[MAX_COMPARES];