Skip to content

Commit

Permalink
Merge branch '10.0' into 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Dec 19, 2016
2 parents 8e19833 + 9f863a1 commit 44da95e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions storage/innobase/dict/dict0dict.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1643,6 +1643,7 @@ struct dict_foreign_remove_partial
if (table != NULL) {
table->referenced_set.erase(foreign);
}
dict_foreign_free(foreign);
}
};

Expand Down Expand Up @@ -3593,8 +3594,7 @@ dict_foreign_add_to_cache(
}

if (for_in_cache) {
/* Free the foreign object */
mem_heap_free(foreign->heap);
dict_foreign_free(foreign);
} else {
for_in_cache = foreign;
}
Expand Down Expand Up @@ -3622,7 +3622,7 @@ dict_foreign_add_to_cache(
" the ones in table.");

if (for_in_cache == foreign) {
mem_heap_free(foreign->heap);
dict_foreign_free(foreign);
}

return(DB_CANNOT_ADD_CONSTRAINT);
Expand Down Expand Up @@ -3678,7 +3678,7 @@ dict_foreign_add_to_cache(
be one */
}

mem_heap_free(foreign->heap);
dict_foreign_free(foreign);
}

return(DB_CANNOT_ADD_CONSTRAINT);
Expand Down
2 changes: 1 addition & 1 deletion storage/innobase/dict/dict0load.cc
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ dict_process_sys_foreign_rec(
}

/* This recieves a dict_foreign_t* that points to a stack variable.
So mem_heap_free(foreign->heap) is not used as elsewhere.
So dict_foreign_free(foreign) is not used as elsewhere.
Since the heap used here is freed elsewhere, foreign->heap
is not assigned. */
foreign->id = mem_heap_strdupl(heap, (const char*) field, len);
Expand Down
8 changes: 4 additions & 4 deletions storage/xtradb/dict/dict0dict.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1643,6 +1643,7 @@ struct dict_foreign_remove_partial
if (table != NULL) {
table->referenced_set.erase(foreign);
}
dict_foreign_free(foreign);
}
};

Expand Down Expand Up @@ -3597,8 +3598,7 @@ dict_foreign_add_to_cache(
}

if (for_in_cache) {
/* Free the foreign object */
mem_heap_free(foreign->heap);
dict_foreign_free(foreign);
} else {
for_in_cache = foreign;
}
Expand All @@ -3622,7 +3622,7 @@ dict_foreign_add_to_cache(
" the ones in table.");

if (for_in_cache == foreign) {
mem_heap_free(foreign->heap);
dict_foreign_free(foreign);
}

return(DB_CANNOT_ADD_CONSTRAINT);
Expand Down Expand Up @@ -3678,7 +3678,7 @@ dict_foreign_add_to_cache(
be one */
}

mem_heap_free(foreign->heap);
dict_foreign_free(foreign);
}

return(DB_CANNOT_ADD_CONSTRAINT);
Expand Down
2 changes: 1 addition & 1 deletion storage/xtradb/dict/dict0load.cc
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ dict_process_sys_foreign_rec(
}

/* This recieves a dict_foreign_t* that points to a stack variable.
So mem_heap_free(foreign->heap) is not used as elsewhere.
So dict_foreign_free(foreign) is not used as elsewhere.
Since the heap used here is freed elsewhere, foreign->heap
is not assigned. */
foreign->id = mem_heap_strdupl(heap, (const char*) field, len);
Expand Down

0 comments on commit 44da95e

Please sign in to comment.