Details
-
Bug
-
Status: In Review (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.11
-
None
Description
1. Class ha_federatedx_derived_handler overrides virtual function derived_handler::print_error() with an empty implementation which causes problems with error handling. Errors are being simply ignored and occur during later processing.
void ha_federatedx_derived_handler::print_error(int, unsigned long)
|
{
|
}
|
2. Members of federatedx_handler_base are accessed in the end_scan_() function without checking for having been initialized. This can cause server crash if init_scan_() has not completed successfully.
int federatedx_handler_base::end_scan_()
|
{
|
DBUG_ENTER("ha_federatedx_derived_handler::end_scan");
|
(*iop)->free_result(stored_result);
|
free_share(txn, share);
|
DBUG_RETURN(0);
|
}
|
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
1. Class ha_federatedx_derived_handler overrides virtual function derived_handler::print_error() with an empty implementation which causes problems with error handling. Errors are being simply ignored and occur during later processing.
{code} void ha_federatedx_derived_handler::print_error(int, unsigned long) { } {code} 2. Members of federatedx_handler_base are accessed in the end_scan_() function without checking for having been initialized. This can cause server crash if init_scan_() has not completed successfully. {code} int federatedx_handler_base::end_scan_() { DBUG_ENTER("ha_federatedx_derived_handler::end_scan"); (*iop)->free_result(stored_result); free_share(txn, share); DBUG_RETURN(0); } |
1. Class ha_federatedx_derived_handler overrides virtual function derived_handler::print_error() with an empty implementation which causes problems with error handling. Errors are being simply ignored and occur during later processing.
{code} void ha_federatedx_derived_handler::print_error(int, unsigned long) { } {code} 2. Members of federatedx_handler_base are accessed in the end_scan_() function without checking for having been initialized. This can cause server crash if init_scan_() has not completed successfully. {code} int federatedx_handler_base::end_scan_() { DBUG_ENTER("ha_federatedx_derived_handler::end_scan"); (*iop)->free_result(stored_result); free_share(txn, share); DBUG_RETURN(0); } {code} |
Status | Open [ 1 ] | In Progress [ 3 ] |
Assignee | Oleg Smirnov [ JIRAUSER50405 ] | Sergei Petrunia [ psergey ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |