-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[nrfconnect] fix the crash during CASE session resumption #22622
Merged
andy31415
merged 1 commit into
project-chip:master
from
markaj-nordic:binding_handler_fix
Sep 16, 2022
Merged
[nrfconnect] fix the crash during CASE session resumption #22622
andy31415
merged 1 commit into
project-chip:master
from
markaj-nordic:binding_handler_fix
Sep 16, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pullapprove
bot
requested review from
andy31415,
anush-apple,
arkq,
Byungjoo-Lee,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chshu,
chulspro,
Damian-Nordic,
dhrishi,
electrocucaracha,
emargolis,
franck-apple,
gjc13,
harimau-qirex,
harsha-rajendran,
hawk248,
isiu-apple,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jtung-apple,
lazarkov,
LuDuda,
mlepage-google,
mrjerryjohns,
msandstedt and
mspang
September 14, 2022 11:39
pullapprove
bot
requested review from
rgoliver,
robszewczyk,
saurabhst,
selissia,
tecimovic,
tehampson,
vijs,
vivien-apple,
wbschiller,
woody-apple,
xylophone21 and
yufengwangca
September 14, 2022 11:39
…mption. Accessing DeviceProxy object in the application callback is redundant and leads to crash, because of modified lifetime of this object in Matter core.
markaj-nordic
force-pushed
the
binding_handler_fix
branch
from
September 14, 2022 11:42
92d7ee2
to
f18bb61
Compare
PR #22622: Size comparison from 8626d39 to f18bb61 Increases (1 build for bl702)
Full report (7 builds for bl702, linux, mbed, qpg)
|
Damian-Nordic
approved these changes
Sep 14, 2022
andy31415
approved these changes
Sep 14, 2022
tehampson
reviewed
Sep 14, 2022
woody-apple
approved these changes
Sep 15, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue Being Resolved
Change overview
Do not use DeviceProxy pointer in application callback (BindingHandler),
as this object instantiated as temporary object in the caller's code.
This is only application/platform related change.