acandylevey / NativeMessaging

C# Chome Native Messaging Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Size is passed unsigned

ericlaw1979 opened this issue · comments

Should this

var buffer = new char[BitConverter.ToInt32(lengthBytes, 0)];

be

var buffer = new char[BitConverter.ToUInt32(lengthBytes, 0)];

https://source.chromium.org/chromium/chromium/src/+/master:chrome/browser/extensions/api/messaging/native_message_process_host.cc;drc=bb733b33b305d7bb1eb4b6553e470cc3afc5bf51;l=191