fixing compiler warning of uninitialized variable resulting from my checkin

for bug 121441
This commit is contained in:
darin%netscape.com 2002-01-25 10:47:24 +00:00
Родитель 0d36604e29
Коммит 3f94575093
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -515,6 +515,9 @@ nsStorageInputStream::Seek(PRInt32 aWhence, PRInt32 aOffset)
case NS_SEEK_END:
pos = mStorageStream->mLogicalLength + aOffset;
break;
default:
NS_NOTREACHED("unexpected whence value");
return NS_ERROR_UNEXPECTED;
}
return Seek(pos);