Removed null byte from empty response packet in GDB server

This commit is contained in:
Nav
2024-10-05 14:46:09 +01:00
parent f2e26af210
commit d21afc47f4

View File

@@ -11,7 +11,7 @@ namespace DebugServer::Gdb::ResponsePackets
{ {
public: public:
EmptyResponsePacket() EmptyResponsePacket()
: ResponsePacket(std::vector<unsigned char>{0}) : ResponsePacket(std::vector<unsigned char>{})
{} {}
}; };
} }