<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>96610</bug_id>
          
          <creation_ts>2012-09-13 00:06:14 -0700</creation_ts>
          <short_desc>[EFL][WK2] Regression (r128163)</short_desc>
          <delta_ts>2012-09-17 22:17:49 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>WebKit EFL</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>Other</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Regina Chung">heejin.r.chung</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>cdumez</cc>
    
    <cc>gyuyoung.kim</cc>
    
    <cc>lucas.de.marchi</cc>
    
    <cc>rakuco</cc>
    
    <cc>webkit.review.bot</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>719126</commentid>
    <comment_count>0</comment_count>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-13 00:06:14 -0700</bug_when>
    <thetext>While removing compile warnings r128163 changed the logic of code for entering accelerated compositing mode, resulting in never being able to enter it.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>719146</commentid>
    <comment_count>1</comment_count>
      <attachid>163800</attachid>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-13 00:27:37 -0700</bug_when>
    <thetext>Created attachment 163800
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>719178</commentid>
    <comment_count>2</comment_count>
      <attachid>163800</attachid>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-13 00:54:34 -0700</bug_when>
    <thetext>Comment on attachment 163800
Patch

Fixes regression introduced by r128163 while removing compile warnings as intended in r128163.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>721765</commentid>
    <comment_count>3</comment_count>
      <attachid>163800</attachid>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-09-17 02:17:55 -0700</bug_when>
    <thetext>Comment on attachment 163800
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=163800&amp;action=review

&gt; Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:501
&gt; +    EINA_SAFETY_ON_FALSE_RETURN_VAL(!priv-&gt;evasGl, false);

Is below code is more readable instead of above one?

EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false);</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>721788</commentid>
    <comment_count>4</comment_count>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-17 03:31:07 -0700</bug_when>
    <thetext>(In reply to comment #3)
&gt; (From update of attachment 163800 [details])
&gt; View in context: https://bugs.webkit.org/attachment.cgi?id=163800&amp;action=review
&gt; &gt; Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:501
&gt; &gt; +    EINA_SAFETY_ON_FALSE_RETURN_VAL(!priv-&gt;evasGl, false);
&gt; Is below code is more readable instead of above one?
&gt; EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false);

Using EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false); doesn&apos;t compile.
If we want to use EINA_SAFETY_ON_TRUE_RETURN_VAL(), we have to put !! in front of priv-&gt;evasGl.
Which one should I use?
EINA_SAFETY_ON_FALSE_RETURN_VAL(!priv-&gt;evasGl, false); or
EINA_SAFETY_ON_TRUE_RETURN_VAL(!!priv-&gt;evasGl, false);</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>721796</commentid>
    <comment_count>5</comment_count>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-09-17 04:26:45 -0700</bug_when>
    <thetext>(In reply to comment #4)

&gt; Using EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false); doesn&apos;t compile.
&gt; If we want to use EINA_SAFETY_ON_TRUE_RETURN_VAL(), we have to put !! in front of priv-&gt;evasGl.
&gt; Which one should I use?
&gt; EINA_SAFETY_ON_FALSE_RETURN_VAL(!priv-&gt;evasGl, false); or
&gt; EINA_SAFETY_ON_TRUE_RETURN_VAL(!!priv-&gt;evasGl, false);

Something is strange. I succeed to compile with below code in my linux box.

EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false);

Could you check this again ?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722413</commentid>
    <comment_count>6</comment_count>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-17 18:49:01 -0700</bug_when>
    <thetext>(In reply to comment #5)
&gt; (In reply to comment #4)
&gt; &gt; Using EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false); doesn&apos;t compile.
&gt; &gt; If we want to use EINA_SAFETY_ON_TRUE_RETURN_VAL(), we have to put !! in front of priv-&gt;evasGl.
&gt; &gt; Which one should I use?
&gt; &gt; EINA_SAFETY_ON_FALSE_RETURN_VAL(!priv-&gt;evasGl, false); or
&gt; &gt; EINA_SAFETY_ON_TRUE_RETURN_VAL(!!priv-&gt;evasGl, false);
&gt; Something is strange. I succeed to compile with below code in my linux box.
&gt; EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false);
&gt; Could you check this again ?

You have to build with --tiled-backing-store option to include that code :)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722422</commentid>
    <comment_count>7</comment_count>
      <attachid>163800</attachid>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-09-17 19:20:05 -0700</bug_when>
    <thetext>Comment on attachment 163800
Patch

Frankly, EINA_SAFETY_ON_NULL_RETURN_VAL is correct I think. But, it was changed due to compilation warning. So, if you need to check if priv-&gt;evasGl is null, why don&apos;t you use *if* condition explicitly ?

if (priv-&gt;evasGl) {
    EINA_LOG_DOM_WARN(_ewk_log_dom, &quot;bla bla&quot;);
    return false;
}</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722429</commentid>
    <comment_count>8</comment_count>
      <attachid>164479</attachid>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-17 19:36:54 -0700</bug_when>
    <thetext>Created attachment 164479
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722430</commentid>
    <comment_count>9</comment_count>
    <who name="Regina Chung">heejin.r.chung</who>
    <bug_when>2012-09-17 19:37:17 -0700</bug_when>
    <thetext>(In reply to comment #7)
&gt; (From update of attachment 163800 [details])
&gt; Frankly, EINA_SAFETY_ON_NULL_RETURN_VAL is correct I think. But, it was changed due to compilation warning. So, if you need to check if priv-&gt;evasGl is null, why don&apos;t you use *if* condition explicitly ?
&gt; if (priv-&gt;evasGl) {
&gt;     EINA_LOG_DOM_WARN(_ewk_log_dom, &quot;bla bla&quot;);
&gt;     return false;
&gt; }

I agree that EINA_SAFETY_ON_NULL_RETURN_VAL is correct. Changed the code as you suggested.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722438</commentid>
    <comment_count>10</comment_count>
      <attachid>164479</attachid>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2012-09-17 20:03:49 -0700</bug_when>
    <thetext>Comment on attachment 164479
Patch

Clearing flags on attachment: 164479

Committed r128844: &lt;http://trac.webkit.org/changeset/128844&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722439</commentid>
    <comment_count>11</comment_count>
    <who name="WebKit Review Bot">webkit.review.bot</who>
    <bug_when>2012-09-17 20:03:53 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722472</commentid>
    <comment_count>12</comment_count>
      <attachid>164479</attachid>
    <who name="Chris Dumez">cdumez</who>
    <bug_when>2012-09-17 21:48:26 -0700</bug_when>
    <thetext>Comment on attachment 164479
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=164479&amp;action=review

&gt; Source/WebKit2/ChangeLog:3
&gt; +        [EFL][WK2] Regression (r128163)

Please add a title after Regression (r128163):

&gt; Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:-501
&gt; -    EINA_SAFETY_ON_NULL_RETURN_VAL(priv-&gt;evasGl, false);

EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false); ?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722478</commentid>
    <comment_count>13</comment_count>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-09-17 21:57:49 -0700</bug_when>
    <thetext>(In reply to comment #12)
&gt; (From update of attachment 164479 [details])
&gt; View in context: https://bugs.webkit.org/attachment.cgi?id=164479&amp;action=review
&gt; 
&gt; &gt; Source/WebKit2/ChangeLog:3
&gt; &gt; +        [EFL][WK2] Regression (r128163)
&gt; 
&gt; Please add a title after Regression (r128163):
&gt; 
&gt; &gt; Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:-501
&gt; &gt; -    EINA_SAFETY_ON_NULL_RETURN_VAL(priv-&gt;evasGl, false);
&gt; 
&gt; EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false); ?

As previous comments mentioned, EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false) makes a below build break with --tiled-backing-store option.

/home/gyuyoung/webkit/WebKit/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:501:5: error: invalid conversion from ‘Evas_GL* {aka _Evas_GL*}’ to ‘long int’ [-fpermissive]</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722485</commentid>
    <comment_count>14</comment_count>
    <who name="Chris Dumez">cdumez</who>
    <bug_when>2012-09-17 22:11:18 -0700</bug_when>
    <thetext>(In reply to comment #13)
&gt; (In reply to comment #12)
&gt; &gt; (From update of attachment 164479 [details] [details])
&gt; &gt; View in context: https://bugs.webkit.org/attachment.cgi?id=164479&amp;action=review
&gt; &gt; 
&gt; &gt; &gt; Source/WebKit2/ChangeLog:3
&gt; &gt; &gt; +        [EFL][WK2] Regression (r128163)
&gt; &gt; 
&gt; &gt; Please add a title after Regression (r128163):
&gt; &gt; 
&gt; &gt; &gt; Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:-501
&gt; &gt; &gt; -    EINA_SAFETY_ON_NULL_RETURN_VAL(priv-&gt;evasGl, false);
&gt; &gt; 
&gt; &gt; EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false); ?
&gt; 
&gt; As previous comments mentioned, EINA_SAFETY_ON_TRUE_RETURN_VAL(priv-&gt;evasGl, false) makes a below build break with --tiled-backing-store option.
&gt; 
&gt; /home/gyuyoung/webkit/WebKit/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:501:5: error: invalid conversion from ‘Evas_GL* {aka _Evas_GL*}’ to ‘long int’ [-fpermissive]

Maybe EINA_SAFETY_ON_TRUE_RETURN_VAL(!!priv-&gt;evasGl, false); would have worked then?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>722489</commentid>
    <comment_count>15</comment_count>
    <who name="Gyuyoung Kim">gyuyoung.kim</who>
    <bug_when>2012-09-17 22:17:49 -0700</bug_when>
    <thetext>(In reply to comment #14)
 /home/gyuyoung/webkit/WebKit/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp:501:5: error: invalid conversion from ‘Evas_GL* {aka _Evas_GL*}’ to ‘long int’ [-fpermissive]
&gt; 
&gt; Maybe EINA_SAFETY_ON_TRUE_RETURN_VAL(!!priv-&gt;evasGl, false); would have worked then?

As I said comment #7, I think EINA_SAFETY_ON_NULL_RETURN_VAL is more proper because this is for checking if priv-&gt;evasGL is not null. Generally, it looks EINA_SAFETY_ON_TRUE | FALSE_RETURN_VAL() are used for checking specific condition rather than checking if null. So, I thought that explicit *if* condition is better than EINA_SAFETY_ON_TRUE | FALSE_RETURN_VAL for null checking.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="1"
              ispatch="1"
              isprivate="0"
          >
            <attachid>163800</attachid>
            <date>2012-09-13 00:27:37 -0700</date>
            <delta_ts>2012-09-17 19:36:48 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>regression-r128163.patch</filename>
            <type>text/plain</type>
            <size>1570</size>
            <attacher name="Regina Chung">heejin.r.chung</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJLaXQyL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
S2l0Mi9DaGFuZ2VMb2cJKHJldmlzaW9uIDEyODQxMikKKysrIFNvdXJjZS9XZWJLaXQyL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDE4IEBACisyMDEyLTA5LTEyICBSZWdpbmEg
Q2h1bmcgIDxoZWVqaW4uci5jaHVuZ0BzYW1zdW5nLmNvbT4KKworICAgICAgICBbRUZMXVtXSzJd
IFJlZ3Jlc3Npb24gKHIxMjgxNjMpCisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3No
b3dfYnVnLmNnaT9pZD05NjYxMAorCisgICAgICAgIFJldmlld2VkIGJ5IE5PQk9EWSAoT09QUyEp
LgorCisgICAgICAgIFdoaWxlIHJlbW92aW5nIGNvbXBpbGUgd2FybmluZ3MgcjEyODE2MyBjaGFu
Z2VkIHRoZSBsb2dpYyBvZiBjb2RlIGZvciBlbnRlcmluZyAKKyAgICAgICAgYWNjZWxlcmF0ZWQg
Y29tcG9zaXRpbmcgbW9kZSwgcmVzdWx0aW5nIGluIG5ldmVyIGJlaW5nIGFibGUgdG8gZW50ZXIg
aXQuCisgICAgICAgIENoYW5nZWQgYmFjayB0byB0aGUgY29ycmVjdCBjb2RlIGFuZCBmaXhlZCB0
aGUgY29tcGlsZSB3YXJuaW5nIGJ5IHVzaW5nIGFuCisgICAgICAgIGFwcHJvcHJpYXRlIEVJTkEg
bWFjcm8uCisKKyAgICAgICAgKiBVSVByb2Nlc3MvQVBJL2VmbC9ld2tfdmlldy5jcHA6CisgICAg
ICAgIChld2tfdmlld19hY2NlbGVyYXRlZF9jb21wb3NpdGluZ19tb2RlX2VudGVyKTogQ2hhbmdl
ZCBFSU5BX1NBRkVUWV9PTl9OVUxMX1JFVFVSTl9WQUwgdG8gRUlOQV9TQUZFVFlfT05fRkFMU0Vf
UkVUVVJOX1ZBTC4KKwogMjAxMi0wOS0xMiAgU2hlcmlmZiBCb3QgIDx3ZWJraXQucmV2aWV3LmJv
dEBnbWFpbC5jb20+CiAKICAgICAgICAgVW5yZXZpZXdlZCwgcm9sbGluZyBvdXQgcjEyNzg3Ni4K
SW5kZXg6IFNvdXJjZS9XZWJLaXQyL1VJUHJvY2Vzcy9BUEkvZWZsL2V3a192aWV3LmNwcAo9PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09Ci0tLSBTb3VyY2UvV2ViS2l0Mi9VSVByb2Nlc3MvQVBJL2VmbC9ld2tfdmlldy5jcHAJ
KHJldmlzaW9uIDEyODQxMikKKysrIFNvdXJjZS9XZWJLaXQyL1VJUHJvY2Vzcy9BUEkvZWZsL2V3
a192aWV3LmNwcAkod29ya2luZyBjb3B5KQpAQCAtNDk4LDcgKzQ5OCw3IEBACiAgICAgRVdLX1ZJ
RVdfU0RfR0VUX09SX1JFVFVSTihld2tWaWV3LCBzbWFydERhdGEsIGZhbHNlKTsKICAgICBFV0tf
VklFV19QUklWX0dFVF9PUl9SRVRVUk4oc21hcnREYXRhLCBwcml2LCBmYWxzZSk7CiAKLSAgICBF
SU5BX1NBRkVUWV9PTl9OVUxMX1JFVFVSTl9WQUwocHJpdi0+ZXZhc0dsLCBmYWxzZSk7CisgICAg
RUlOQV9TQUZFVFlfT05fRkFMU0VfUkVUVVJOX1ZBTCghcHJpdi0+ZXZhc0dsLCBmYWxzZSk7CiAK
ICAgICBFdmFzKiBldmFzID0gZXZhc19vYmplY3RfZXZhc19nZXQoZXdrVmlldyk7CiAgICAgcHJp
di0+ZXZhc0dsID0gZXZhc19nbF9uZXcoZXZhcyk7Cg==
</data>

          </attachment>
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>164479</attachid>
            <date>2012-09-17 19:36:54 -0700</date>
            <delta_ts>2012-09-17 21:48:26 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-96610-20120918113654.patch</filename>
            <type>text/plain</type>
            <size>1749</size>
            <attacher name="Regina Chung">heejin.r.chung</attacher>
            
              <data encoding="base64">SW5kZXg6IFNvdXJjZS9XZWJLaXQyL0NoYW5nZUxvZwo9PT09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBTb3VyY2UvV2Vi
S2l0Mi9DaGFuZ2VMb2cJKHJldmlzaW9uIDEyODczNCkKKysrIFNvdXJjZS9XZWJLaXQyL0NoYW5n
ZUxvZwkod29ya2luZyBjb3B5KQpAQCAtMSwzICsxLDE4IEBACisyMDEyLTA5LTE3ICBSZWdpbmEg
Q2h1bmcgIDxoZWVqaW4uci5jaHVuZ0BzYW1zdW5nLmNvbT4KKworICAgICAgICBbRUZMXVtXSzJd
IFJlZ3Jlc3Npb24gKHIxMjgxNjMpCisgICAgICAgIGh0dHBzOi8vYnVncy53ZWJraXQub3JnL3No
b3dfYnVnLmNnaT9pZD05NjYxMAorCisgICAgICAgIFJldmlld2VkIGJ5IE5PQk9EWSAoT09QUyEp
LgorCisgICAgICAgIFdoaWxlIHJlbW92aW5nIGNvbXBpbGUgd2FybmluZ3MgcjEyODE2MyBjaGFu
Z2VkIHRoZSBsb2dpYyBvZiBjb2RlIGZvciBlbnRlcmluZyAKKyAgICAgICAgYWNjZWxlcmF0ZWQg
Y29tcG9zaXRpbmcgbW9kZSwgcmVzdWx0aW5nIGluIG5ldmVyIGJlaW5nIGFibGUgdG8gZW50ZXIg
aXQuCisgICAgICAgIENoYW5nZWQgYmFjayB0byB0aGUgY29ycmVjdCBjb2RlIGFuZCBmaXhlZCB0
aGUgY29tcGlsZSB3YXJuaW5nIGJ5IHVzaW5nIGFuCisgICAgICAgIGFwcHJvcHJpYXRlIEVJTkEg
bWFjcm8uCisKKyAgICAgICAgKiBVSVByb2Nlc3MvQVBJL2VmbC9ld2tfdmlldy5jcHA6CisgICAg
ICAgIChld2tfdmlld19hY2NlbGVyYXRlZF9jb21wb3NpdGluZ19tb2RlX2VudGVyKTogQ2hhbmdl
ZCBFSU5BX1NBRkVUWV9PTl9OVUxMX1JFVFVSTl9WQUwgdG8gKmlmKiBjb25kaXRpb24gc3RhdGVt
ZW50LgorCiAyMDEyLTA5LTE1ICBWaXZlayBHYWxhdGFnZSAgPHZpdmVrZ2FsYXRhZ2VAZ21haWwu
Y29tPgogCiAgICAgICAgIFdpbkNhaXJvIGJ1aWxkIGZpeCBkdWUgdG8gbWlzc2luZyBzeW1ib2xz
IGZvciBzZXRJbWFnZXNFbmFibGVkIGFuZCBzZXRTdG9yYWdlQmxvY2tpbmdQb2xpY3kKSW5kZXg6
IFNvdXJjZS9XZWJLaXQyL1VJUHJvY2Vzcy9BUEkvZWZsL2V3a192aWV3LmNwcAo9PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
Ci0tLSBTb3VyY2UvV2ViS2l0Mi9VSVByb2Nlc3MvQVBJL2VmbC9ld2tfdmlldy5jcHAJKHJldmlz
aW9uIDEyODczNCkKKysrIFNvdXJjZS9XZWJLaXQyL1VJUHJvY2Vzcy9BUEkvZWZsL2V3a192aWV3
LmNwcAkod29ya2luZyBjb3B5KQpAQCAtNDk4LDcgKzQ5OCwxMCBAQCBib29sIGV3a192aWV3X2Fj
Y2VsZXJhdGVkX2NvbXBvc2l0aW5nX21vCiAgICAgRVdLX1ZJRVdfU0RfR0VUX09SX1JFVFVSTihl
d2tWaWV3LCBzbWFydERhdGEsIGZhbHNlKTsKICAgICBFV0tfVklFV19QUklWX0dFVF9PUl9SRVRV
Uk4oc21hcnREYXRhLCBwcml2LCBmYWxzZSk7CiAKLSAgICBFSU5BX1NBRkVUWV9PTl9OVUxMX1JF
VFVSTl9WQUwocHJpdi0+ZXZhc0dsLCBmYWxzZSk7CisgICAgaWYgKHByaXYtPmV2YXNHbCkgewor
ICAgICAgICBFSU5BX0xPR19ET01fV0FSTihfZXdrX2xvZ19kb20sICJBY2NlbGVyYXRlZCBjb21w
b3NpdGluZyBtb2RlIGFscmVhZHkgZW50ZXJlZC4iKTsKKyAgICAgICAgcmV0dXJuIGZhbHNlOwor
ICAgIH0KIAogICAgIEV2YXMqIGV2YXMgPSBldmFzX29iamVjdF9ldmFzX2dldChld2tWaWV3KTsK
ICAgICBwcml2LT5ldmFzR2wgPSBldmFzX2dsX25ldyhldmFzKTsK
</data>

          </attachment>
      

    </bug>

</bugzilla>