This commit is contained in:
Bill Welden 2013-01-08 07:47:45 -08:00 коммит произвёл Jukka Jylänki
Родитель cd535236f6
Коммит 27100ac1f5
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);