Changeset 19136 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jan 25, 2007, 11:30:21 PM (18 years ago)
Author:
lars
Message:

Patch from Jan Kraemer.

Reviewed by Maciej

Fix for http://bugs.webkit.org/show_bug.cgi?id=12382

Fix crash on architectures with 32 bit ints and
64 bit longs (For example Linux on AMD64)

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r19105 r19136  
     12007-01-25  Jan Kraemer  <[email protected]>
     2
     3        Reviewed by Maciej
     4
     5        Fix for http://bugs.webkit.org/show_bug.cgi?id=12382
     6
     7        Fix crash on architectures with 32 bit ints and
     8        64 bit longs (For example Linux on AMD64)
     9
     10        * kjs/dtoa.cpp: #define Long int as suggested in comment
     11
    1122007-01-24  Geoffrey Garen  <[email protected]>
    213
  • trunk/JavaScriptCore/kjs/dtoa.cpp

    r17372 r19136  
    189189
    190190#ifndef Long
    191 #define Long long
     191#define Long int
    192192#endif
    193193#ifndef ULong
Note: See TracChangeset for help on using the changeset viewer.