зеркало из https://github.com/mozilla/gecko-dev.git
Bug 774201 - Avoid pointer to integer cast losing precision on win64 r=billm
This commit is contained in:
Родитель
bc868ccf9a
Коммит
9b8729979c
|
@ -3747,7 +3747,7 @@ SetMemoryGCPrefChangedCallback(const char* aPrefName, void* aClosure)
|
|||
PRInt32 pref = Preferences::GetInt(aPrefName, -1);
|
||||
// handle overflow and negative pref values
|
||||
if (pref > 0 && pref < 10000)
|
||||
JS_SetGCParameter(nsJSRuntime::sRuntime, (JSGCParamKey)(long)aClosure, pref);
|
||||
JS_SetGCParameter(nsJSRuntime::sRuntime, (JSGCParamKey)(intptr_t)aClosure, pref);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче