Merge branch 'leptoptilos' into dev

This commit is contained in:
MX 2024-01-08 00:02:55 +03:00
commit 5dfa2fd24c
No known key found for this signature in database
GPG Key ID: 7CCC66B7DBDD1C83
11 changed files with 10 additions and 15 deletions

View File

@ -67,7 +67,7 @@ static bool aime_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -67,7 +67,7 @@ static bool hid_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "core/core_defines.h"
#include "core/log.h"
#include "core/string.h"
#include "nfc_supported_card_plugin.h"
#include "protocols/mf_classic/mf_classic.h"
@ -189,7 +186,7 @@ static bool kazan_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -114,7 +114,7 @@ static bool metromoney_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -142,7 +142,7 @@ static bool plantain_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -144,7 +144,7 @@ static bool saflok_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -1541,7 +1541,7 @@ static bool social_moscow_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -1566,7 +1566,7 @@ static bool troika_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -92,7 +92,7 @@ static bool two_cities_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -115,7 +115,7 @@ static bool washcity_read(Nfc* nfc, NfcDevice* device) {
nfc_device_set_data(device, NfcProtocolMfClassic, data);
is_read = true;
is_read = mf_classic_is_card_read(data);
} while(false);
mf_classic_free(data);

View File

@ -18,8 +18,6 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "core/core_defines.h"
#include "core/string.h"
#include "furi_hal_rtc.h"
#include "nfc_supported_card_plugin.h"