mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	Changed the return type of strdup() to const char* (issue #658)
				
					
				
			This commit is contained in:
		| @@ -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); | ||||
|   } | ||||
| } | ||||
|   | ||||
| @@ -243,7 +243,7 @@ TEST_CASE("std::string") { | ||||
|  | ||||
|   SECTION("JsonBuffer_strdup") { | ||||
|     std::string original("hello"); | ||||
|     char *copy = jb.strdup(original); | ||||
|     const char *copy = jb.strdup(original); | ||||
|     original[0] = 'w'; | ||||
|     REQUIRE(std::string("hello") == copy); | ||||
|   } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user