Changeset 157608 in webkit


Ignore:
Timestamp:
Oct 17, 2013 3:47:02 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Crash fix for Windows XP.
https://bugs.webkit.org/show_bug.cgi?id=122790

Patch by Anthony Johnson <anthony.johnson@flexsim.com> on 2013-10-17
Reviewed by Geoffrey Garen.

  • win/tools/vsprops/common.props:

Replaced stack and heap sizes of zero with blank stack and heap sizes.

Location:
trunk/WebKitLibraries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitLibraries/ChangeLog

    r157558 r157608  
     12013-10-17  Anthony Johnson  <anthony.johnson@flexsim.com>
     2
     3        Crash fix for Windows XP.
     4        https://bugs.webkit.org/show_bug.cgi?id=122790
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * win/tools/vsprops/common.props:
     9        Replaced stack and heap sizes of zero with blank stack and heap sizes.
     10
    1112013-10-16  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/WebKitLibraries/win/tools/vsprops/common.props

    r156302 r157608  
    185185      <AssemblyDebug>false</AssemblyDebug>
    186186      <SubSystem>Windows</SubSystem>
    187       <HeapReserveSize>0</HeapReserveSize>
    188       <HeapCommitSize>0</HeapCommitSize>
    189       <StackReserveSize>0</StackReserveSize>
    190       <StackCommitSize>0</StackCommitSize>
     187      <HeapReserveSize>
     188      </HeapReserveSize>
     189      <HeapCommitSize>
     190      </HeapCommitSize>
     191      <StackReserveSize>
     192      </StackReserveSize>
     193      <StackCommitSize>
     194      </StackCommitSize>
    191195      <LargeAddressAware>
    192196      </LargeAddressAware>
Note: See TracChangeset for help on using the changeset viewer.