Updated to version 1.3.6 for release on 2024-05-12 Mother's Day! (#635)

* Updated to version 1.3.6 for release on 2024-05-12 Mother's Day!
This commit is contained in:
Steve Karg
2024-05-12 09:06:23 -05:00
committed by GitHub
parent 06ff987b79
commit 3222244e4e
9 changed files with 84 additions and 14 deletions
-2
View File
@@ -2139,7 +2139,6 @@ bool bvlc_address_from_ascii(BACNET_IP_ADDRESS *addr, const char *addrstr)
uint16_t tmp = 0;
char c = 0;
unsigned char i = 0, j = 0;
uint8_t charsread = 0;
if (!addr) {
return false;
@@ -2168,7 +2167,6 @@ bool bvlc_address_from_ascii(BACNET_IP_ADDRESS *addr, const char *addrstr)
return false;
}
++addrstr;
++charsread;
} while ((c != '.') && (c != 0) && (c != ' '));
}