The first beacon of SmartCAPWAP

This commit is contained in:
vemax78
2013-12-20 23:14:34 +01:00
parent 29ba25e434
commit bef31786ce
18 changed files with 6543 additions and 130 deletions

View File

@ -137,7 +137,7 @@ char* capwap_duplicate_string(const char* source) {
ASSERT(source != NULL);
clone = capwap_alloc(sizeof(char) * (strlen(source) + 1));
clone = capwap_alloc(strlen(source) + 1);
strcpy(clone, source);
return clone;