Bug 1513201 - Bug 1451308 - handle pasted data of certain types with an odd length; r=mats

Differential Revision: https://phabricator.services.mozilla.com/D14150

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Alex Gaynor 2018-12-12 17:34:27 +00:00
Родитель 2f65e17f02
Коммит d141b3b9e2
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -280,16 +280,18 @@ nsresult nsClipboard::GetGlobalData(HGLOBAL aHGBL, void** aData,
uint32_t* aLen) {
// Allocate a new memory buffer and copy the data from global memory.
// Recall that win98 allocates to nearest DWORD boundary. As a safety
// precaution, allocate an extra 2 bytes (but don't report them!) and
// null them out to ensure that all of our strlen calls will succeed.
// precaution, allocate an extra 3 bytes (but don't report them in |aLen|!)
// and null them out to ensure that all of our NS_strlen calls will succeed.
// NS_strlen operates on char16_t, so we need 3 NUL bytes to ensure it finds
// a full NUL char16_t when |*aLen| is odd.
nsresult result = NS_ERROR_FAILURE;
if (aHGBL != nullptr) {
LPSTR lpStr = (LPSTR)GlobalLock(aHGBL);
DWORD allocSize = GlobalSize(aHGBL);
char* data = static_cast<char*>(malloc(allocSize + sizeof(char16_t)));
char* data = static_cast<char*>(malloc(allocSize + 3));
if (data) {
memcpy(data, lpStr, allocSize);
data[allocSize] = data[allocSize + 1] =
data[allocSize] = data[allocSize + 1] = data[allocSize + 2] =
'\0'; // null terminate for safety
GlobalUnlock(aHGBL);