This commit is contained in:
waterson%netscape.com 1999-08-06 18:28:15 +00:00
Родитель b73bf1eea4
Коммит d56c2a024e
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -2898,7 +2898,7 @@ nsWebShell:: GetLinkState(const PRUnichar* aURLSpec, nsLinkState& aState)
char buf[256];
char* url = buf;
if (urlStr.Length() >= sizeof(buf)) {
if (urlStr.Length() >= PRInt32(sizeof buf)) {
url = new char[urlStr.Length() + 1];
}

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

@ -511,7 +511,7 @@ nsRDFContentUtils::MakeElementID(nsIDocument* aDocument, const nsString& aURI, n
return NS_OK;
}
PRBool
nsRDFContentUtils::IsContainedBy(nsIContent* aElement, nsIContent* aContainer)
{
nsCOMPtr<nsIContent> element( dont_QueryInterface(aElement) );

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

@ -2898,7 +2898,7 @@ nsWebShell:: GetLinkState(const PRUnichar* aURLSpec, nsLinkState& aState)
char buf[256];
char* url = buf;
if (urlStr.Length() >= sizeof(buf)) {
if (urlStr.Length() >= PRInt32(sizeof buf)) {
url = new char[urlStr.Length() + 1];
}