зеркало из https://github.com/mozilla/pjs.git
compile fix for Mac OS X 10.5 beta. b=384162 r=mento sr=roc
This commit is contained in:
Родитель
4965c02989
Коммит
043247512c
|
@ -264,7 +264,8 @@ URL_TYPE createURLByMakingDirectoryAtURLWithName(URL_TYPE parent, STRING_TYPE na
|
|||
FSRef newDirectoryRef;
|
||||
|
||||
struct HFSUniStr255 nameUnicode;
|
||||
CFRange range = { 0, MIN(CFStringGetLength(name), USHRT_MAX) };
|
||||
CFIndex nameLength = CFStringGetLength(name);
|
||||
CFRange range = { 0, (nameLength < USHRT_MAX ? nameLength : USHRT_MAX) };
|
||||
CFStringGetCharacters(name, range, nameUnicode.unicode);
|
||||
nameUnicode.length = range.length;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче