search for: buf_index

Displaying 1 result from an estimated 1 matches for "buf_index".

Did you mean: aaf_index
2006 Sep 24
1
[patch] buffer overflow in q_parser.y
...Index: c/include/search.h =================================================================== --- c/include/search.h (revision 615) +++ c/include/search.h (working copy) @@ -819,6 +819,7 @@ char *qstr; char *qstrp; char buf[QP_CONC_WORDS][MAX_WORD_SIZE]; + char *dynbuf; int buf_index; HashTable *field_cache; HashSet *fields; Index: c/src/q_parser.y =================================================================== --- c/src/q_parser.y (revision 615) +++ c/src/q_parser.y (working copy) @@ -173,6 +173,11 @@ char *bufp = buf; qp->buf_index = (qp->buf_ind...