Changeset 2694


Ignore:
Timestamp:
Apr 12, 2006, 4:08:48 AM (19 years ago)
Author:
bird
Message:

When parsing a .def-file from weakld with very long lines (511+ chars) we the '!weakld changed this!' comment as exports. Changed buffer sizes from 512 bytes to 2048.

Location:
trunk/emx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/emx/ChangeLog.emx

    r2693 r2694  
    11/* $Id$ */
     2
     32006-04-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     4    - libmoddef:
     5        o When parsing a .def-file from weakld with very long lines (511+ chars)
     6          we the "!weakld changed this!" comment as exports. Changed buffer sizes
     7          from 512 bytes to 2048.
    28
    392006-04-10: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • trunk/emx/src/libmoddef/moddef1.c

    r2673 r2694  
    2121  unsigned flags;
    2222  const char *ptr;
    23   char string[512];
    24   char buffer[512];
     23  char string[2048];
     24  char buffer[2048];
    2525};
    2626
Note: See TracChangeset for help on using the changeset viewer.