зеркало из https://github.com/mozilla/gecko-dev.git
fixed heap corruption in mac version of the function mangleResourceIntoFileURL. This change ONLY effects macs
This commit is contained in:
Родитель
0d1a808b08
Коммит
584891891e
|
@ -749,6 +749,13 @@ char *mangleResourceIntoFileURL(const char* aResourceFileName)
|
|||
printf("RESOURCE name %s\n", resourceBase);
|
||||
#endif
|
||||
|
||||
#ifdef XP_MAC
|
||||
#define MAXPATHLEN 2000
|
||||
|
||||
resourceBase = (char *)PR_Malloc(MAXPATHLEN);;
|
||||
*resourceBase = '\0';
|
||||
#endif
|
||||
|
||||
// Join base path to resource name
|
||||
if (aResourceFileName[0] == '/') {
|
||||
aResourceFileName++;
|
||||
|
|
Загрузка…
Ссылка в новой задаче