bug 801013 - imgRequest::AdjustPriority wrongly adjusts loadgroup instead of channel r=joedrew

This commit is contained in:
Patrick McManus 2012-10-13 12:47:36 -04:00
Родитель 0541b9caf5
Коммит 16a5b894ba
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -343,7 +343,7 @@ void imgRequest::AdjustPriority(imgRequestProxy *proxy, int32_t delta)
if (!GetStatusTracker().FirstConsumerIs(proxy))
return;
nsCOMPtr<nsISupportsPriority> p = do_QueryInterface(mRequest);
nsCOMPtr<nsISupportsPriority> p = do_QueryInterface(mChannel);
if (p)
p->AdjustPriority(delta);
}