Followup fix for bug 406251, make NPVariant.intValue be a signed int so negative ints can be passed through safely. r+sr=jonas@sicking.cc

This commit is contained in:
jst@mozilla.org 2008-03-13 17:48:20 -07:00
Родитель eb7ec6cf73
Коммит 8d3763d0bb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -133,7 +133,7 @@ typedef struct _NPVariant {
NPVariantType type;
union {
bool boolValue;
uint32_t intValue;
int32_t intValue;
double doubleValue;
NPString stringValue;
NPObject *objectValue;