r=av
a=waterson

Don't use hard coded 2000.  Instead use sizeof(path).
This commit is contained in:
edburns%acm.org 2000-07-22 00:48:26 +00:00
Родитель abf50564e5
Коммит 45e10cfc16
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -138,7 +138,7 @@ nsPluginsDir::nsPluginsDir(PRUint16 location)
plugDir += "plugins";
*(nsFileSpec*)this = plugDir;
PR_snprintf(path, 2000, "%s", (const char *) plugDir);
PR_snprintf(path, sizeof(path), "%s", (const char *) plugDir);
}

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

@ -138,7 +138,7 @@ nsPluginsDir::nsPluginsDir(PRUint16 location)
plugDir += "plugins";
*(nsFileSpec*)this = plugDir;
PR_snprintf(path, 2000, "%s", (const char *) plugDir);
PR_snprintf(path, sizeof(path), "%s", (const char *) plugDir);
}