-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wifi: QT SVD fixes #15555
wifi: QT SVD fixes #15555
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Test specificationCI/Jenkins/NRF
CI/Jenkins/integration
Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
The memory for format is leaked. Instead of fixing the leak, move away from malloc based implementation it is overkill for logging and also protect the prints using a mutex, this should have been done even with malloc/free for thread safety (apart from inherent malloc/free thread safety). Fixes SHEL-2274. Signed-off-by: Chaitanya Tata <[email protected]>
The response handler doesn't check for failures and they will be ignored, add a check for failures and return failure. Signed-off-by: Chaitanya Tata <[email protected]>
Now that the memory leak has been fixed, we don't need 100K heap for QT app. Signed-off-by: Chaitanya Tata <[email protected]>
Fixes heap corruption seen in SVD test suites. Signed-off-by: Chaitanya Tata <[email protected]>
WPA supplicant now depends on POSIX, so, remove this dependency to avoid conflict. Signed-off-by: Chaitanya Tata <[email protected]>
Latest Zephyr has modified the data structure. Signed-off-by: Chaitanya Tata <[email protected]>
Displaying error message without reason is useless. Signed-off-by: Chaitanya Tata <[email protected]>
QT along with hostap needs more FDs, else socket initialization will fail. Signed-off-by: Chaitanya Tata <[email protected]>
No description provided.