-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: None
-
Server Programmability
-
Fully Compatible
-
ALL
-
v9.0, v8.3
-
Programmability 2026-08-04
-
200
-
None
-
None
-
None
-
None
-
None
-
None
-
None
writeURI writes data in little endian format, but readURI does this:
std::string_view::size_type uriLen = 0;
inFile.read((char*)(&uriLen), sizeof(uriLen));
which on a big endian system reads the little endian data as though it were big endian.