mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 17:06:21 +00:00
Fix memleak in test_parser unittest
Regards https://github.com/profanity-im/profanity/issues/1019
This commit is contained in:
@@ -457,6 +457,7 @@ get_first_of_one(void **state)
|
||||
char *result = get_start(inp, 2);
|
||||
|
||||
assert_string_equal("one", result);
|
||||
free(result);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -466,6 +467,7 @@ get_first_of_two(void **state)
|
||||
char *result = get_start(inp, 2);
|
||||
|
||||
assert_string_equal("one ", result);
|
||||
free(result);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -475,6 +477,7 @@ get_first_two_of_three(void **state)
|
||||
char *result = get_start(inp, 3);
|
||||
|
||||
assert_string_equal("one two ", result);
|
||||
free(result);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -484,6 +487,7 @@ get_first_two_of_three_first_quoted(void **state)
|
||||
char *result = get_start(inp, 3);
|
||||
|
||||
assert_string_equal("\"one\" two ", result);
|
||||
free(result);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -493,6 +497,7 @@ get_first_two_of_three_second_quoted(void **state)
|
||||
char *result = get_start(inp, 3);
|
||||
|
||||
assert_string_equal("one \"two\" ", result);
|
||||
free(result);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -502,6 +507,7 @@ get_first_two_of_three_first_and_second_quoted(void **state)
|
||||
char *result = get_start(inp, 3);
|
||||
|
||||
assert_string_equal("\"one\" \"two\" ", result);
|
||||
free(result);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -659,4 +665,4 @@ parse_options_with_duplicated_option_sets_error(void **state)
|
||||
assert_false(res);
|
||||
|
||||
options_destroy(options);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user