1
0
Fork 0

[F] Fixed incorrect error processing

This commit is contained in:
seleznevae 2019-01-02 09:52:31 +03:00
parent fee7ed20ba
commit 155a47a5dd
3 changed files with 15 additions and 3 deletions

View File

@ -848,6 +848,8 @@ fort_cell_t *copy_cell(fort_cell_t *cell)
assert(cell);
fort_cell_t *result = create_cell();
if (result == NULL)
return NULL;
destroy_string_buffer(result->str_buffer);
result->str_buffer = copy_string_buffer(cell->str_buffer);
if (result->str_buffer == NULL) {

View File

@ -38,6 +38,8 @@ fort_cell_t *copy_cell(fort_cell_t *cell)
assert(cell);
fort_cell_t *result = create_cell();
if (result == NULL)
return NULL;
destroy_string_buffer(result->str_buffer);
result->str_buffer = copy_string_buffer(cell->str_buffer);
if (result->str_buffer == NULL) {

View File

@ -27,6 +27,7 @@ void test_free(void *ptr)
static int create_table_and_show(void)
{
ft_table_t *table = NULL;
ft_table_t *table_copy = NULL;
int result = 0;
table = ft_create_table();
@ -62,11 +63,17 @@ static int create_table_and_show(void)
goto exit;
}
const char *table_str = ft_to_string(table);
if (table_str == NULL) {
table_copy = ft_copy_table(table);
if (table_copy == NULL) {
result = 8;
goto exit;
}
const char *table_str = ft_to_string(table_copy);
if (table_str == NULL) {
result = 9;
goto exit;
}
const char *table_str_etalon =
"+---+---+-----+----------+\n"
"| | | | |\n"
@ -87,13 +94,14 @@ static int create_table_and_show(void)
"+---+---+-----+----------+\n";
/*assert_str_equal(table_str, table_str_etalon);*/
if (strcmp(table_str, table_str_etalon) != 0) {
result = 9;
result = 10;
goto exit;
}
exit:
ft_destroy_table(table);
ft_destroy_table(table_copy);
return result;
}