mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
TestDriver: Remove unused local variable initialization
This commit is contained in:
@@ -40,7 +40,7 @@ static const int NumTests =
|
||||
static char* lowercase(const char* string)
|
||||
{
|
||||
char *new_string, *p;
|
||||
size_t stringSize = 0;
|
||||
size_t stringSize;
|
||||
|
||||
stringSize = CM_CAST(size_t, strlen(string) + 1);
|
||||
new_string = CM_CAST(char*, malloc(sizeof(char) * stringSize));
|
||||
|
||||
Reference in New Issue
Block a user