Bug 494027 - Crash @NS_NotifyPluginCall on tinderbox shortly after plugin tests run. r+sr=jst@mozilla.org

This commit is contained in:
Karl Tomlinson 2009-05-22 15:24:50 -07:00
Родитель 198f1fc81c
Коммит 0f242d70db
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -183,6 +183,9 @@ void NS_NotifyPluginCall(PRIntervalTime startTime)
PRIntervalTime endTime = PR_IntervalNow() - startTime;
nsCOMPtr<nsIObserverService> notifyUIService =
do_GetService("@mozilla.org/observer-service;1");
if (!notifyUIService)
return;
float runTimeInSeconds = float(endTime) / PR_TicksPerSecond();
nsAutoString runTimeString;
runTimeString.AppendFloat(runTimeInSeconds);