fix stupid checkin that should not have landed

This commit is contained in:
dougt%netscape.com 2001-12-19 02:43:21 +00:00
parent 691349bc95
commit f92974c0db

View File

@ -2473,7 +2473,7 @@ NS_IMETHODIMP nsLocalFile::GetURL(char * *aURL)
PRBool dir;
rv = IsDirectory(&dir);
NS_ASSERTION(NS_SUCCEEDED(rv), "Cannot tell if this is a directory");
if (NS_SUCCEEDED(rv) && dir && ) {
if (NS_SUCCEEDED(rv) && dir) {
// make sure we have a trailing slash
escPath += "/";
}