CI: Update Linux runners to Ubuntu 24.04

This commit is contained in:
Thaddeus Crews
2024-11-06 09:42:02 -06:00
parent 0f5f3bc954
commit 8d1462c748
9 changed files with 35 additions and 12 deletions

View File

@@ -223,13 +223,13 @@ void StreamPeer::put_var(const Variant &p_variant, bool p_full_objects) {
}
uint8_t StreamPeer::get_u8() {
uint8_t buf[1];
uint8_t buf[1] = {};
get_data(buf, 1);
return buf[0];
}
int8_t StreamPeer::get_8() {
uint8_t buf[1];
uint8_t buf[1] = {};
get_data(buf, 1);
return buf[0];
}