mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 10:33:33 +00:00
Patch from Bruce Mitchener (bruce@cybersight.com) that fixes unitialized
memort error
This commit is contained in:
parent
d4ba88584d
commit
158ed075a4
@ -348,7 +348,7 @@ nsEventStateManager::CheckForAndDispatchClick(nsIPresContext& aPresContext,
|
||||
nsMouseEvent *aEvent,
|
||||
nsEventStatus& aStatus)
|
||||
{
|
||||
nsresult ret;
|
||||
nsresult ret = NS_OK;
|
||||
nsMouseEvent event;
|
||||
PRBool fireClick = PR_FALSE;
|
||||
|
||||
|
@ -348,7 +348,7 @@ nsEventStateManager::CheckForAndDispatchClick(nsIPresContext& aPresContext,
|
||||
nsMouseEvent *aEvent,
|
||||
nsEventStatus& aStatus)
|
||||
{
|
||||
nsresult ret;
|
||||
nsresult ret = NS_OK;
|
||||
nsMouseEvent event;
|
||||
PRBool fireClick = PR_FALSE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user