Check type compatibility when coercing RootedVar to Handle, bug 745361. r=luke

This commit is contained in:
Brian Hackett 2012-04-15 21:19:44 -07:00
Родитель ceaaa7980d
Коммит 47284176c7
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -334,6 +334,7 @@ template <typename T> template <typename S>
inline
Handle<T>::Handle(const RootedVar<S> &root)
{
testAssign<S>();
ptr = reinterpret_cast<const T *>(root.address());
}