-
Notifications
You must be signed in to change notification settings - Fork 10
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
[SL-TEMP] Modified scan networks code to use ByteSpan in place of pointer. #257
Conversation
Can you list all the tests that were done to validated that the scan operations works under all scenarios? |
Sure.
|
@arun-silabs new Build failure to address |
4174ea2
to
82670db
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Putting a request change to get the change to review later
This PR fixes the Scan Networks issue mentioned in MATTER-4650
Description of issue : While scanning for a particular SSID(string), the size of the pointer to this string is taken as length of the string instead of the actual length.
Description of Fix : Replaced the pointer with Bytespan so that the length of the input SSID is calculated correctly.