Skip to content
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

Remove Integer from PaseVerifierParams constructor #20586

Closed
wants to merge 33 commits into from
Closed
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1923dc9
Remove Integer from PaseVerifierParams constructor
ajwak Jul 11, 2022
e3ef427
remove two yocto SDKs to decrease imx docker image size (#20546)
FaqiangZhu-nxp Jul 11, 2022
b8a1ac9
Don't try to use to_underlying for non-enum C++ types. (#20554)
bzbarsky-apple Jul 11, 2022
bd32eda
Change advertised struct size (#20543)
Jul 11, 2022
9ed476b
Revert "[ota] Fix exchange context leak in OTA requestor (#20304)" (#…
Damian-Nordic Jul 11, 2022
7165a87
update latest zap to support PR 20020 (#20411)
yunhanw-google Jul 11, 2022
7199184
Re-add privilege-storage.cpp to the Darwin framework build. (#20581)
bzbarsky-apple Jul 12, 2022
f3f1eeb
add CI for Bouffalolab BL602 (#20258)
stoneM2017 Jul 12, 2022
984b6ae
Fix Chef DoorLock lock/unlock functions didn't overide weak functions…
erwinpan1 Jul 12, 2022
9e8f3b5
Return CONSTRAINT_ERROR on user labels that are too long (instead of …
andy31415 Jul 12, 2022
aa3b21e
[OTA] Set MRP Active Retry interval for ota-provider-app on Linux (#2…
selissia Jul 12, 2022
1c2db1b
[zephyr] Fix factory recent after recent KVS changes (#20419)
Damian-Nordic Jul 12, 2022
3a00dcd
Cleanup p6 SDK compiler options (#20567)
mspang Jul 12, 2022
5310a42
Remove mbed builds from cloudbuild - mbed builds on vscode fail with …
andy31415 Jul 12, 2022
9da46dc
Update Pigweed to 438c2a742cf (#20617)
Jul 12, 2022
e51430e
Resolve crasher in Matter.framework when parsing query image params (…
krypton36 Jul 12, 2022
14549d4
Remove Set/GetCHIPoBLEServiceMode. (#20621)
bzbarsky-apple Jul 12, 2022
101b310
Clean up P6 SDK paths (#20624)
mspang Jul 12, 2022
9d47a6d
darwin-framework-tool: Remove racy access to readline (#20634)
krypton36 Jul 12, 2022
c9a4055
Fixed DL script issues (#20605)
kowsisoundhar12 Jul 12, 2022
4d2e526
Fix flashbundle name (it is based on project name) (#20647)
andy31415 Jul 12, 2022
2d02025
Target non-interactive Linux example build in CI (#20635)
cpagravel Jul 12, 2022
8dff457
[nrfconnect] Added mode allowing to send new Cert. Decl. in OTA DFU (…
kkasperczyk-no Jul 12, 2022
a1a830f
Fix validity times on certificates issued by the Darwin framework. (#…
bzbarsky-apple Jul 13, 2022
71d84b2
Update cluster default revision based on spec (#20636)
andy31415 Jul 13, 2022
7e2ab03
use the 0.5.85 version of imx docker image in the CI (#20663)
FaqiangZhu-nxp Jul 13, 2022
884fbbd
Add targets that generate test coverage information. (#20578)
andy31415 Jul 13, 2022
301ac9e
remove ami.xmp from matter (#20659)
yunhanw-google Jul 13, 2022
3a8d119
make sure the stop command action is executed by setting the option o…
jmartinez-silabs Jul 13, 2022
41da7a6
Update OTA image tool (#20491)
cecille Jul 13, 2022
61d0066
Update OTA queues to use the matter work queue. (#20628)
krypton36 Jul 13, 2022
609aa3a
Modified test july 12 (#20599)
manjunath-grl Jul 13, 2022
ccc8b20
Merge branch 'project-chip:master' into ajwak-chip
ajwak Jul 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/controller/java/CHIPDeviceController-JNI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ CHIP_ERROR N2J_PaseVerifierParams(JNIEnv * env, jlong setupPincode, jbyteArray p
SuccessOrExit(err);

env->ExceptionClear();
constructor = env->GetMethodID(paramsClass, "<init>", "(JI[B)V");
constructor = env->GetMethodID(paramsClass, "<init>", "(J[B)V");
VerifyOrExit(constructor != nullptr, err = CHIP_JNI_ERROR_METHOD_NOT_FOUND);

outParams = (jobject) env->NewObject(paramsClass, constructor, setupPincode, paseVerifier);
Expand Down