mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-17 15:39:28 +01:00
Huami: Prevent setting an MTU of < 23, which is either a special value or a parsing error of Gadgetbridge
This fixes a problem where writeToChunked algorithm results in out of bounds writes or an endless loop. Closes #1936
This commit is contained in:
parent
f9dc625c5c
commit
a619fdb168
@ -1279,6 +1279,10 @@ public class HuamiSupport extends AbstractBTLEDeviceSupport {
|
||||
if (!prefs.getBoolean(PREF_ALLOW_HIGH_MTU, false)) {
|
||||
break;
|
||||
}
|
||||
if (mtu < 23) {
|
||||
LOG.error("Device announced unreasonable low MTU of " + mtu + ", ignoring");
|
||||
break;
|
||||
}
|
||||
mMTU = mtu;
|
||||
/*
|
||||
* not really sure if this would make sense, is this event already a proof of a successful MTU
|
||||
|
Loading…
Reference in New Issue
Block a user