1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Bug #29419820: MEMORY LEAK IN MY_YYOVERFLOW()

Note: this patch is for 5.6.

Detected by ASAN.

The patch fixes the cleanup of parser stack pointers.

Reviewed-by: Guilhem Bichot <guilhem.bichot@oracle.com>
This commit is contained in:
Gleb Shchepa
2019-05-20 10:53:00 +04:00
committed by Sergei Golubchik
parent 8ddb7e3eb7
commit 7473a71a28

View File

@ -1,5 +1,5 @@
/* Copyright (c) 2000, 2015, Oracle and/or its affiliates. /* Copyright (c) 2000, 2019, Oracle and/or its affiliates.
Copyright (c) 2010, 2018, MariaDB Corporation Copyright (c) 2010, 2019, MariaDB Corporation
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -2858,15 +2858,18 @@ public:
class Yacc_state class Yacc_state
{ {
public: public:
Yacc_state() Yacc_state() : yacc_yyss(NULL), yacc_yyvs(NULL) { reset(); }
{
reset();
}
void reset() void reset()
{ {
yacc_yyss= NULL; if (yacc_yyss != NULL) {
yacc_yyvs= NULL; my_free(yacc_yyss);
yacc_yyss = NULL;
}
if (yacc_yyvs != NULL) {
my_free(yacc_yyvs);
yacc_yyvs = NULL;
}
m_set_signal_info.clear(); m_set_signal_info.clear();
m_lock_type= TL_READ_DEFAULT; m_lock_type= TL_READ_DEFAULT;
m_mdl_type= MDL_SHARED_READ; m_mdl_type= MDL_SHARED_READ;