[webkit-changes] cvs commit: JavaScriptCore/kjs lookup.h

Maciej mjs at opensource.apple.com
Mon Jul 25 16:35:36 PDT 2005


mjs         05/07/25 16:35:36

  Modified:    .        ChangeLog
               kjs      lookup.h
  Log:
          - fix mistake in last change that leads to assertion failure in the Development build
  
          * kjs/lookup.h:
          (KJS::lookupGetOwnValue):
  
  Revision  Changes    Path
  1.764     +7 -0      JavaScriptCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
  retrieving revision 1.763
  retrieving revision 1.764
  diff -u -r1.763 -r1.764
  --- ChangeLog	25 Jul 2005 22:17:10 -0000	1.763
  +++ ChangeLog	25 Jul 2005 23:35:35 -0000	1.764
  @@ -1,3 +1,10 @@
  +2005-07-25  Maciej Stachowiak  <mjs at apple.com>
  +
  +        - fix mistake in last change that leads to assertion failure in the Development build
  +
  +        * kjs/lookup.h:
  +        (KJS::lookupGetOwnValue):
  +
   2005-07-24  Maciej Stachowiak  <mjs at apple.com>
   
           Reviewed by Darin.
  
  
  
  1.16      +1 -1      JavaScriptCore/kjs/lookup.h
  
  Index: lookup.h
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/kjs/lookup.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- lookup.h	25 Jul 2005 22:17:12 -0000	1.15
  +++ lookup.h	25 Jul 2005 23:35:36 -0000	1.16
  @@ -212,7 +212,7 @@
       if (!entry) // not found, forward to parent
         return thisObj->ParentImp::getOwnProperty(exec, propertyName, result);
   
  -    assert(!entry->attr & Function);
  +    assert(!(entry->attr & Function));
   
       result = thisObj->getValueProperty(exec, entry->value);
       return true;
  
  
  



More information about the webkit-changes mailing list