mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 345665, nsKeygenHandler calls nsITokenDialogs ::ChooseToken with NULL context Patch contributed by Christian Persch r=kengert, sr=dveditz, a=sayrer
This commit is contained in:
parent
16ed6292d6
commit
e654a1487f
@ -478,7 +478,7 @@ GetSlotWithMechanism(PRUint32 aMechanism,
|
||||
rv = NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
else {
|
||||
rv = dialogs->ChooseToken(nsnull, (const PRUnichar**)tokenNameList, numSlots, &unicodeTokenChosen, &canceled);
|
||||
rv = dialogs->ChooseToken(m_ctx, (const PRUnichar**)tokenNameList, numSlots, &unicodeTokenChosen, &canceled);
|
||||
}
|
||||
}
|
||||
NS_RELEASE(dialogs);
|
||||
|
Loading…
Reference in New Issue
Block a user