bug 49189, crash when updating wallet tables, r=pnunn

This commit is contained in:
morse%netscape.com 2000-08-16 23:05:03 +00:00
Родитель 74fd1f046f
Коммит f73d8d0aff
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -180,6 +180,9 @@ SI_GetBoolPref(const char * prefname, PRBool defaultvalue) {
PUBLIC void
SI_SetCharPref(const char * prefname, const char * prefvalue) {
if (!prefvalue) {
return; /* otherwise the SetCharPref routine called below will crash */
}
nsresult ret;
nsCOMPtr<nsIPref> pPrefService = do_GetService(kPrefServiceCID, &ret);
if (!NS_FAILED(ret)) {