Changeset 19663 for S60/trunk/WebCore

Show
Ignore:
Timestamp:
02/16/07 12:13:08 (23 months ago)
Author:
brmorris
Message:

w3liu, reviewed by zalan

DESC: PNIO-6YFCUT: Strange conversion problem (in get " changed to %2522 instead of %22) with for example google search.
http://bugs.webkit.org/show_bug.cgi?id=12792

Location:
S60/trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebCore/ChangeLog

    r19586 r19663  
     1w3liu, reviewed by zbujtas@gmail.com 
     2 DESC: PNIO-6YFCUT:  Strange conversion problem (in get " changed to %2522 instead of %22) with for example google search. 
     3 http://bugs.webkit.org/show_bug.cgi?id=12792 
     4 
     5        WARNING: NO TEST CASES ADDED OR CHANGED 
     6 
     7        * khtml/ecma/xmlhttprequest.cpp: 
     8        (KJS::XMLHttpRequest::~XMLHttpRequest): 
     9 
    110zalan, Reviewed by yongjun. 
    211        DESC: merging WebKit/trunk r16319 to s60/trunk PKAI-6Y2PBN   
  • S60/trunk/WebCore/khtml/ecma/xmlhttprequest.cpp

    r18692 r19663  
    251251{ 
    252252  delete qObject; 
    253   delete decoder; 
     253  if (decoder) 
     254      decoder->deref(); 
    254255} 
    255256