This reverts commit f7b63f2ed5f8fea7ed9c8d5b9116bc10bfbab7b7.
This commit is contained in:
Bill Welden 2013-01-08 09:44:16 -08:00 коммит произвёл Jukka Jylänki
Родитель 27100ac1f5
Коммит f4480b5d9b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -439,7 +439,7 @@ RegisteredPointer.prototype.toWireTypeAutoUpcast = function(destructors, handle)
} else {
fromRawType = handle.pointeeType.rawType;
}
if (fromRawType === this.pointeeType.rawType) {
if (fromRawType == this.pointeeType.rawType) {
return this.isSmartPointer ? handle.smartPointer : handle.ptr;
}
var ptr = ___staticPointerCast(handle.ptr, fromRawType, this.pointeeType.rawType);