aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ascend.y
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-09-15 18:32:21 -0700
committerGuy Harris <guy@alum.mit.edu>2016-09-16 01:32:47 +0000
commit1158576622d677884a3ce4aa169873d453897c9d (patch)
tree63148a483bee62370303d80bf3dc5ee3ba02c599 /wiretap/ascend.y
parent7a7d162a494e3ccf15f58f1d710dcf645cfa02b1 (diff)
Don't pick up junk from an unset error-number variable.
Keep the actual error code and pointer-to-error-string in the scanner state, rather than pointers to the variables passed in to us. Initialize them to 0 and NULL, respectively. That way, when the actual scanner routine returns, we don't check for an error by looking at the error variable pointed to by our argument, which might not have been set by the scanner and might have stack junk in it, we look at a structure member we set to 0 before the scan. Change-Id: I81a4fd6d5cf5e56f5638fae1253c48dc50c9c36d Reviewed-on: https://code.wireshark.org/review/17721 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wiretap/ascend.y')
-rw-r--r--wiretap/ascend.y10
1 files changed, 7 insertions, 3 deletions
diff --git a/wiretap/ascend.y b/wiretap/ascend.y
index fdd6be7c51..cc1bda085f 100644
--- a/wiretap/ascend.y
+++ b/wiretap/ascend.y
@@ -448,6 +448,7 @@ run_ascend_parser(FILE_T fh, struct wtap_pkthdr *phdr, guint8 *pd,
ascend_state_t *parser_state, int *err, gchar **err_info)
{
yyscan_t scanner = NULL;
+ int status;
if (ascendlex_init(&scanner) != 0) {
/* errno is set if this fails */
@@ -459,8 +460,8 @@ run_ascend_parser(FILE_T fh, struct wtap_pkthdr *phdr, guint8 *pd,
ascendset_extra(parser_state, scanner);
parser_state->fh = fh;
parser_state->ascend_parse_error = NULL;
- parser_state->err = err;
- parser_state->err_info = err_info;
+ parser_state->err = 0;
+ parser_state->err_info = NULL;
parser_state->pseudo_header = &phdr->pseudo_header.ascend;
parser_state->pkt_data = pd;
@@ -490,7 +491,10 @@ run_ascend_parser(FILE_T fh, struct wtap_pkthdr *phdr, guint8 *pd,
*/
parser_state->pseudo_header->call_num[0] = '\0';
- return yyparse(scanner, parser_state, fh);
+ status = yyparse(scanner, parser_state, fh);
+ *err = parser_state->err;
+ *err_info = parser_state->err_info;
+ return status;
}
void