Changeset 94539 in webkit


Ignore:
Timestamp:
Sep 5, 2011 3:58:10 PM (13 years ago)
Author:
abarth@webkit.org
Message:

Fix global variable leak in garden-o-matic
https://bugs.webkit.org/show_bug.cgi?id=67617

Reviewed by Dimitri Glazkov.

Caught by running the unit tests with noglobals turned on.

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js

    r94487 r94539  
    247247
    248248        testNameList.forEach(function(testName) {
    249             row = this._body.insertRow();
     249            var row = this._body.insertRow();
    250250            for (var i = builderNameList.length - 1; i >= 0; --i) {
    251251                var cell = row.insertCell();
  • trunk/Tools/ChangeLog

    r94524 r94539  
     12011-09-05  Adam Barth  <abarth@webkit.org>
     2
     3        Fix global variable leak in garden-o-matic
     4        https://bugs.webkit.org/show_bug.cgi?id=67617
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        Caught by running the unit tests with noglobals turned on.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
     11
    1122011-09-05  Balazs Kelemen  <kbalazs@webkit.org>
    213
Note: See TracChangeset for help on using the changeset viewer.