Skip to content

Commit 0474d60

Browse files
committed
Reduce program size and improve stabilities.
1 parent 76f5aaa commit 0474d60

File tree

7 files changed

+239
-233
lines changed

7 files changed

+239
-233
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Firebase RTDB Arduino Client for ARM/AVR WIFI Dev Boards
22

33

4-
Google's Firebase Realtime Database Arduino Library based on WiFiNINA library, v1.2.4
4+
Google's Firebase Realtime Database Arduino Library based on WiFiNINA library, v1.2.5
55

66
This library supports Arduino NANO 33 IoT, Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000, Arduino Nano RP2040 Connect and Arduino UNO WiFi Rev.2.
77

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=Firebase Arduino based on WiFiNINA
22

3-
version=1.2.4
3+
version=1.2.5
44

55
author=Mobizt
66

src/Firebase.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Firebase.cpp, version 1.0.3
2+
* Firebase.cpp, version 1.0.4
33
*
44
*
55
* Created: March 3, 2022
@@ -571,6 +571,7 @@ void Firebase_Class::getHeader(const char *buf, String &out, PGM_P hdr)
571571
{
572572
strncpy(tmp, buf + p1 + strlen_P(hdr), strlen(buf) - p1 - strlen_P(hdr));
573573
out = tmp;
574+
delP(tmp);
574575
}
575576
}
576577
}

0 commit comments

Comments
 (0)