Changed the return type of strdup() to const char* (issue #658)

This commit is contained in:
Benoit Blanchon
2018-01-14 13:49:37 +01:00
parent e92612b511
commit ae0b7a3ebd
4 changed files with 8 additions and 7 deletions

View File

@ -10,14 +10,14 @@ TEST_CASE("DynamicJsonBuffer::strdup()") {
SECTION("Should return a copy") {
char original[] = "hello";
char* copy = buffer.strdup(original);
const char* copy = buffer.strdup(original);
strcpy(original, "world");
REQUIRE(std::string("hello") == copy);
}
SECTION("Given NULL, return NULL") {
const char* original = NULL;
char* copy = buffer.strdup(original);
const char* copy = buffer.strdup(original);
REQUIRE(0 == copy);
}
}