Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialize fields with zero bytes in wireless module
Previously, the fields in the wireless module were declared but not explicitly initialized upon declaration. As nothing else would do so afterwards, this could introduce random characters left over in the memory segment into the fields. This was explicitly observed in the essid-field, but likely a possibility for other fields as well. Hence, this commit adds explicit initialization with zero bytes to all fields to ensure proper termination of all fields. Fixes #432
- Loading branch information