Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 245)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#27 fixed ld bug when map files are requested bird Yuri Dario
Description

In write_output(), map file name overwrites memory because of wrong allocation. At line 3985, correct code is

if (map_filename == NULL)

{

freeav[j++] = map_filename = ALLOCA (strlen (exe_filename) + 5); strcpy (map_filename, exe_filename); _remext (map_filename); strcat (map_filename, ".map");

}

#28 fixed emxbind doesn't read library name from .def file bird Yuri Dario
Description

The module name used by emxbind when building dynamic libraries is not read from .def file: it is built from output name, but this prevents dotted names for the dll.

This change to emxbind.c allows using LIBRARY name from def file:

case _MD_LIBRARY:

/* Create a DLL. Save the initialization and termination

policies after choosing default values for unspecified values. */

if (stmt->library.name[0] != 0)

module_name = xstrdup (stmt->library.name);

#29 wontfix Seriously odd g++ error trying to include os2emx.h from os2.h bird bird
Description
In file included from ../../dist/include/xpcom/plevent.h:204,
from ../../dist/include/xpcom/nsIEventTarget.h:17,
from ../../dist/include/xpcom/nsIEventQueue.h:10,
from D:/builds/nightlies/thunderbird/mozilla/layout/generic/nsSelection.cpp:97:
C:/GCC335/include/os2.h:35:79: C:/GCC335/include/os2emx.h: Invalid argument
In file included from ../../dist/include/xpcom/nsIEventTarget.h:17,
from ../../dist/include/xpcom/nsIEventQueue.h:10,
from D:/builds/nightlies/thunderbird/mozilla/layout/generic/nsSelection.cpp:97:
../../dist/include/xpcom/plevent.h:550: error: parse error before `*' token
make.exe[5]: *** [nsSelection.o] Error 1
make.exe[5]: Leaving directory `D:/builds/nightlies/thunderbird/mozilla/obj/layout/generic'
make.exe[4]: *** [libs] Error 2
make.exe[4]: Leaving directory `D:/builds/nightlies/thunderbird/mozilla/obj/layout'
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.