Fix allocation / deallocation mismatch, found by cppcheck.

This commit is contained in:
riccardom 2010-02-02 15:52:15 +00:00
parent 3db430b2bf
commit 8875c7d302
1 changed files with 1 additions and 1 deletions

View File

@ -1717,7 +1717,7 @@ void Adhoc_SendPacket(u8* packet, u32 len)
WIFI_LOG(4, "Ad-hoc: sent %i/%i bytes of packet.\n", nbytes, frameLen); WIFI_LOG(4, "Ad-hoc: sent %i/%i bytes of packet.\n", nbytes, frameLen);
delete frame; delete[] frame;
} }
void Adhoc_usTrigger() void Adhoc_usTrigger()