зеркало из https://github.com/mozilla/gecko-dev.git
bug 851674: content: nsContentUtils::CheckForSubFrameDrop: don't dereference null pointer (r=smaug)
This commit is contained in:
Родитель
1e1e9fd4c0
Коммит
2c481b6270
|
@ -5293,7 +5293,7 @@ bool
|
|||
nsContentUtils::CheckForSubFrameDrop(nsIDragSession* aDragSession, nsDragEvent* aDropEvent)
|
||||
{
|
||||
nsCOMPtr<nsIContent> target = do_QueryInterface(aDropEvent->originalTarget);
|
||||
if (!target && !target->OwnerDoc()) {
|
||||
if (!target) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче