not in main build - changed newCString to get buffer()

This commit is contained in:
valeski%netscape.com 1999-06-25 18:49:35 +00:00
Родитель e91b7028b0
Коммит d27a84bb78
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -37,9 +37,11 @@ NS_NewURI(nsIURI* *result, const char* spec, nsIURI* baseURI)
nsresult
NS_NewURI(nsIURI* *result, const nsString& spec, nsIURI* baseURI)
{
char* specStr = spec.ToNewCString();
// XXX if the string is unicode, GetBuffer() returns null.
// XXX we need a strategy to deal w/ unicode specs (if there should
// XXX even be such a thing)
const char* specStr = spec.GetBuffer();
nsresult rv = NS_NewURI(result, specStr, baseURI);
nsCRT::free(specStr);
return rv;
}