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

<bugzilla version="5.0.6"
          urlbase="https://bugs.kde.org/"
          
          maintainer="sysadmin@kde.org"
>

    <bug>
          <bug_id>345191</bug_id>
          
          <creation_ts>2015-03-15 22:07:40 +0000</creation_ts>
          <short_desc>kwin_x11 crashes while screen is locked.</short_desc>
          <delta_ts>2018-10-27 04:06:20 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>4</classification_id>
          <classification>Plasma</classification>
          <product>kwin</product>
          <component>general</component>
          <version>unspecified</version>
          <rep_platform>Arch Linux</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>WORKSFORME</resolution>
          
          <see_also>https://bugs.kde.org/show_bug.cgi?id=348873</see_also>
    
    <see_also>https://bugs.kde.org/show_bug.cgi?id=344326</see_also>
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>triaged</keywords>
          <priority>NOR</priority>
          <bug_severity>crash</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Jason Oliveira">jason.oliveira</reporter>
          <assigned_to name="KWin default assignee">kwin-bugs-null</assigned_to>
          <cc>anselmolsm</cc>
          
          <cf_commitlink></cf_commitlink>
          <cf_versionfixedin></cf_versionfixedin>
          <cf_sentryurl></cf_sentryurl>
          <votes>0</votes>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1505515</commentid>
    <comment_count>0</comment_count>
    <who name="Jason Oliveira">jason.oliveira</who>
    <bug_when>2015-03-15 22:07:40 +0000</bug_when>
    <thetext>Dual monitors (1080p on HDMI-0 above, 1440x900 on VGA-0 below) running Free/Open AMD drivers. 9 times out of 10, the screen locker will have either killed kwin_x11 while running, or made it die promptly when the screen is unlocked.

Reproducible: Always

Steps to Reproduce:
1. install latest arch packages for KDE Frameworks and Plasma 5.
2. install free AMD drivers (because Catalyst makes baby $(deity) cry).
3. start up session, and configure screen locker to begin at a specific time
4. let screen be locked for approximately 1 hour.
5. say the magic words &quot;Zim Zala Bim Bamba Zala Do Zala Dim&quot;, and unlock screen.
6. marvel at your beautiful plasma desktop, because you can&apos;t do anything with it, or even see the applications that were open before locking.

Actual Results:  
kwin_x11 dies a horrible death, and the error window (allowing one to restart kwin_x11) is minimized until a) plasma5 is nice enough to let you run an application or (more likely) b) you log into tty2 and do a &quot;DISPLAY=:0 kwin_x11 &amp;&quot; to make life better again.

Expected Results:  
screen unlocks, kde session works, and at the very least, I can move around windows.

Arch Linux (pacman -Syu performed this morning)
Athlon II X2
12GB RAM
Dual Monitors
AMD Radeon HD 4200 with free drivers

Happy to provide backtraces/debugging, just let me know what I should be logging.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1514827</commentid>
    <comment_count>1</comment_count>
    <who name="Martin Flöser">mgraesslin</who>
    <bug_when>2015-04-30 06:23:19 +0000</bug_when>
    <thetext>please provide the backtrace, otherwise we cannot even look at the issue.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1514875</commentid>
    <comment_count>2</comment_count>
    <who name="Thomas Lübking">thomas.luebking</who>
    <bug_when>2015-04-30 10:05:11 +0000</bug_when>
    <thetext>.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1523942</commentid>
    <comment_count>3</comment_count>
    <who name="Anselmo L. S. Melo (anselmolsm)">anselmolsm</who>
    <bug_when>2015-06-04 14:11:48 +0000</bug_when>
    <thetext>This bug is happening here. I&apos;m also using dual monitors setup, with nvidia (352.09), though.
kwin_x11 crashes while the screen is locked. I rebuilt the Archlinux package (kwin 5.3.1-1) with debug symbols, so I could provide the backtrace.

The crash happened yesterday, but drkonqi did not show up - Any other suggestion to obtain this bt? Tks.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1523944</commentid>
    <comment_count>4</comment_count>
    <who name="Thomas Lübking">thomas.luebking</who>
    <bug_when>2015-06-04 14:25:42 +0000</bug_when>
    <thetext>$ echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope # to be able to gdb attach
# login to vt2 (ctrl+alt+2), alternatively/better! login via ssh
$ gdb --pid `pidof kwin_x11` 2&gt;&amp;1 | tee kwin.gdb
# wait until gdb loaded symbols
&gt; continue
# move back to vt1, in case
# cause the crash
# move back to vt2, in case
&gt; bt
# hit enter until you&apos;re at the end of the backtrace
&gt; detach
&gt; quit
# maybe restart kwin
$ DISPLAY=:0 kwin_x11 &amp;
# logout
$ exit

--- 
if &quot;bt&quot; doesn&apos;t work, that means kwin didn&apos;t acutally crash (thus you got no DrKonqi)</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1523952</commentid>
    <comment_count>5</comment_count>
    <who name="Anselmo L. S. Melo (anselmolsm)">anselmolsm</who>
    <bug_when>2015-06-04 14:58:06 +0000</bug_when>
    <thetext>(In reply to Thomas Lübking from comment #4)

Thanks, Thomas. The problem is that I did not find yet a deterministic way to reproduce the issue - It just happens sometimes when I go to grab a coffee. But I&apos;ll follow the steps, attach gdb and wait for the bug.

&gt; if &quot;bt&quot; doesn&apos;t work, that means kwin didn&apos;t acutally crash (thus you got no
&gt; DrKonqi)

Yeah, this is something I want to confirm. Yesterday, I ran the System Activity and saw that there were two kwin_x11 processes - considering their PIDs, one should be the kwin_x11 I executed manually with --replace. The other one, marked as Stopped, maybe was the kwin that &apos;crashed&apos; while the lockscreen was active. But I want to double check this next time.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1523954</commentid>
    <comment_count>6</comment_count>
    <who name="Thomas Lübking">thomas.luebking</who>
    <bug_when>2015-06-04 15:01:58 +0000</bug_when>
    <thetext>(In reply to Anselmo L. S. Melo (anselmolsm) from comment #5)
&gt; other one, marked as Stopped, maybe was the kwin that &apos;crashed&apos; while the

That would explain why DrKonqi didn&apos;t show up - and smells like trouble :-\</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1524865</commentid>
    <comment_count>7</comment_count>
      <attachid>93078</attachid>
    <who name="Anselmo L. S. Melo (anselmolsm)">anselmolsm</who>
    <bug_when>2015-06-08 16:25:52 +0000</bug_when>
    <thetext>Created attachment 93078
bt for kwin_x11 crash

I obtained a bt right now, but I didn&apos;t analyze it yet. Perhaps I should add more debug symbols (Qt, for example).</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1524867</commentid>
    <comment_count>8</comment_count>
    <who name="Martin Flöser">mgraesslin</who>
    <bug_when>2015-06-08 16:47:22 +0000</bug_when>
    <thetext>backtrace looks good, though I have no idea what&apos;s going on.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1524897</commentid>
    <comment_count>9</comment_count>
    <who name="Thomas Lübking">thomas.luebking</who>
    <bug_when>2015-06-08 18:40:54 +0000</bug_when>
    <thetext>looks like bug #346024 (&quot;sddm not shown&quot; can be taken as screen supposed to be locked)  resp. bug #348873 (locking explicitly noted)

Also Anselmo is (unlike the OP!) on nvidia, ie. VBO is transferred between VRAM and RAM on various occasions

@Anselmo
Did you also (except of course when gdb from VT1) switch the VT or suspend to ram or change the screen layout when encoutering this?

-----------

#0  0x00007fcbcf95e89d in nanosleep () from /usr/lib/libc.so.6
#1  0x00007fcbcf95e734 in sleep () from /usr/lib/libc.so.6
#2  0x00007fcbcc19af5a in ?? () from /usr/lib/libKF5Crash.so.5
#3  0x00007fcbcc19b436 in KCrash::defaultCrashHandler(int) () from /usr/lib/libKF5Crash.so.5
#4  &lt;signal handler called&gt;
#5  0x00007fcbcf9370c9 in __memcpy_sse2_unaligned () from /usr/lib/libc.so.6
#6  0x00007fcbc899c0c6 in KWin::GLVertexBuffer::setData (this=this@entry=0xe891c0, vertexCount=24, dim=dim@entry=2, vertices=0x199e758, texcoords=texcoords@entry=0x0) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/libkwineffects/kwinglutils.cpp:2242
#7  0x00007fcbcf54432b in KWin::SceneOpenGL2::doPaintBackground (this=&lt;optimized out&gt;, vertices=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene_opengl.cpp:1049
#8  0x00007fcbcf548f95 in KWin::SceneOpenGL::paintBackground (this=this@entry=0xeecd80, region=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene_opengl.cpp:742
#9  0x00007fcbcf532fb6 in KWin::Scene::paintSimpleScreen (this=this@entry=0xeecd80, orig_mask=orig_mask@entry=8, region=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene.cpp:371
#10 0x00007fcbcf543af3 in KWin::SceneOpenGL2::paintSimpleScreen (this=this@entry=0xeecd80, mask=mask@entry=8, region=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene_opengl.cpp:1015
#11 0x00007fcbcf52ddd4 in KWin::Scene::finalPaintScreen (this=0xeecd80, mask=mask@entry=8, region=..., data=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene.cpp:201
#12 0x00007fcbcf568e1f in KWin::EffectsHandlerImpl::paintScreen (this=0x13e2640, mask=mask@entry=8, region=..., data=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/effects.cpp:397
#13 0x00007fcbccd41d0f in KWin::Effect::paintScreen (this=this@entry=0x108f8e0, mask=mask@entry=8, region=..., data=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/libkwineffects/kwineffects.cpp:535
#14 0x00007fcbcf568dcb in KWin::EffectsHandlerImpl::paintScreen (this=0x13e2640, mask=mask@entry=8, region=..., data=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/effects.cpp:394
#15 0x00007fcbccd41d0f in KWin::Effect::paintScreen (this=this@entry=0x1091e60, mask=mask@entry=8, region=..., data=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/libkwineffects/kwineffects.cpp:535
#16 0x00007fcbcf568dcb in KWin::EffectsHandlerImpl::paintScreen (this=0x13e2640, mask=8, region=..., data=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/effects.cpp:394
#17 0x00007fcbcf52d9ba in KWin::Scene::paintScreen (this=this@entry=0xeecd80, mask=mask@entry=0x7ffebad7017c, damage=..., repaint=..., updateRegion=updateRegion@entry=0x7ffebad70190, validRegion=validRegion@entry=0x7ffebad701a0)
at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene.cpp:151
#18 0x00007fcbcf549ad1 in KWin::SceneOpenGL::paint (this=0xeecd80, damage=..., toplevels=...) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/scene_opengl.cpp:661
#19 0x00007fcbcf5257b3 in KWin::Compositor::performCompositing (this=0xe44ae0) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/composite.cpp:701
#20 0x00007fcbcd7bba93 in QObject::event(QEvent*) () from /usr/lib/libQt5Core.so.5
#21 0x00007fcbce44c62c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5
#22 0x00007fcbce451d10 in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5
#23 0x00007fcbcd78a57b in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /usr/lib/libQt5Core.so.5
#24 0x00007fcbcd7e0b1d in QTimerInfoList::activateTimers() () from /usr/lib/libQt5Core.so.5
#25 0x00007fcbcd7df336 in QEventDispatcherUNIX::processEvents(QFlags&lt;QEventLoop::ProcessEventsFlag&gt;) () from /usr/lib/libQt5Core.so.5
#26 0x00007fcbb52ea2dd in ?? () from /usr/lib/qt/plugins/platforms/libqxcb.so
#27 0x00007fcbcd787ffa in QEventLoop::exec(QFlags&lt;QEventLoop::ProcessEventsFlag&gt;) () from /usr/lib/libQt5Core.so.5
#28 0x00007fcbcd78fa4c in QCoreApplication::exec() () from /usr/lib/libQt5Core.so.5
#29 0x00007fcbcfc4e423 in kdemain (argc=1, argv=0x7ffebad70958) at /home/anselmo/arch/abs/kwin/src/kwin-5.3.1/main_x11.cpp:300
#30 0x00007fcbcf8c7790 in __libc_start_main () from /usr/lib/libc.so.6
#31 0x00000000004007e9 in _start ()</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1525073</commentid>
    <comment_count>10</comment_count>
    <who name="Anselmo L. S. Melo (anselmolsm)">anselmolsm</who>
    <bug_when>2015-06-09 14:24:12 +0000</bug_when>
    <thetext>(In reply to Thomas Lübking from comment #9)
&gt; @Anselmo
&gt; Did you also (except of course when gdb from VT1) switch the VT or suspend
&gt; to ram or change the screen layout when encoutering this?

Thomas,
Yes, I switched from VT1 to VT2, then back to VT1 before unlocking the screen.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1525080</commentid>
    <comment_count>11</comment_count>
    <who name="Thomas Lübking">thomas.luebking</who>
    <bug_when>2015-06-09 14:44:29 +0000</bug_when>
    <thetext>That&apos;s bug #348873 and will &quot;somehow&quot; be related to bug #344326

Jason&apos;s original bug however was on the radeon driver, it&apos;s not sure nor likely that it&apos;s related.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1525088</commentid>
    <comment_count>12</comment_count>
    <who name="Anselmo L. S. Melo (anselmolsm)">anselmolsm</who>
    <bug_when>2015-06-09 15:54:36 +0000</bug_when>
    <thetext>(In reply to Thomas Lübking from comment #11)
&gt; That&apos;s bug #348873 and will &quot;somehow&quot; be related to bug #344326
&gt; 
&gt; Jason&apos;s original bug however was on the radeon driver, it&apos;s not sure nor
&gt; likely that it&apos;s related.

OK. I&apos;ll follow #344326 then. Thanks.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1617582</commentid>
    <comment_count>13</comment_count>
    <who name="Martin Flöser">mgraesslin</who>
    <bug_when>2016-08-29 07:28:15 +0000</bug_when>
    <thetext>Unfortunately we still don&apos;t have a back trace for the original reported issue. The backtrace we have is a specific situation on NVIDIA which is probably not the cause for this problem.

Without the backtrace we cannot further investigate the issue.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1788106</commentid>
    <comment_count>14</comment_count>
    <who name="Andrew Crouthamel">andrew.crouthamel</who>
    <bug_when>2018-09-26 22:10:03 +0000</bug_when>
    <thetext>Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information as soon as possible and set the bug status as REPORTED. Due to regular bug tracker maintenance, if the bug is still in NEEDSINFO status with no change in 30 days, the bug will be closed as RESOLVED &gt; WORKSFORME due to lack of needed information.

For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please set the bug status as REPORTED so that the KDE team knows that the bug is ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1800759</commentid>
    <comment_count>15</comment_count>
    <who name="Andrew Crouthamel">andrew.crouthamel</who>
    <bug_when>2018-10-27 04:06:20 +0000</bug_when>
    <thetext>Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least 30 days. The bug is now closed as RESOLVED &gt; WORKSFORME due to lack of needed information.

For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="0"
              isprivate="0"
          >
            <attachid>93078</attachid>
            <date>2015-06-08 16:25:52 +0000</date>
            <delta_ts>2015-06-08 16:25:52 +0000</delta_ts>
            <desc>bt for kwin_x11 crash</desc>
            <filename>bug345191</filename>
            <type>text/plain</type>
            <size>4204</size>
            <attacher name="Anselmo L. S. Melo (anselmolsm)">anselmolsm</attacher>
            
              <data encoding="base64">IzAgIDB4MDAwMDdmY2JjZjk1ZTg5ZCBpbiBuYW5vc2xlZXAgKCkgZnJvbSAvdXNyL2xpYi9saWJj
LnNvLjYKIzEgIDB4MDAwMDdmY2JjZjk1ZTczNCBpbiBzbGVlcCAoKSBmcm9tIC91c3IvbGliL2xp
YmMuc28uNgojMiAgMHgwMDAwN2ZjYmNjMTlhZjVhIGluID8/ICgpIGZyb20gL3Vzci9saWIvbGli
S0Y1Q3Jhc2guc28uNQojMyAgMHgwMDAwN2ZjYmNjMTliNDM2IGluIEtDcmFzaDo6ZGVmYXVsdENy
YXNoSGFuZGxlcihpbnQpICgpIGZyb20gL3Vzci9saWIvbGliS0Y1Q3Jhc2guc28uNQojNCAgPHNp
Z25hbCBoYW5kbGVyIGNhbGxlZD4KIzUgIDB4MDAwMDdmY2JjZjkzNzBjOSBpbiBfX21lbWNweV9z
c2UyX3VuYWxpZ25lZCAoKSBmcm9tIC91c3IvbGliL2xpYmMuc28uNgojNiAgMHgwMDAwN2ZjYmM4
OTljMGM2IGluIEtXaW46OkdMVmVydGV4QnVmZmVyOjpzZXREYXRhICh0aGlzPXRoaXNAZW50cnk9
MHhlODkxYzAsIHZlcnRleENvdW50PTI0LCBkaW09ZGltQGVudHJ5PTIsIHZlcnRpY2VzPTB4MTk5
ZTc1OCwgdGV4Y29vcmRzPXRleGNvb3Jkc0BlbnRyeT0weDApIGF0IC9ob21lL2Fuc2VsbW8vYXJj
aC9hYnMva3dpbi9zcmMva3dpbi01LjMuMS9saWJrd2luZWZmZWN0cy9rd2luZ2x1dGlscy5jcHA6
MjI0MgojNyAgMHgwMDAwN2ZjYmNmNTQ0MzJiIGluIEtXaW46OlNjZW5lT3BlbkdMMjo6ZG9QYWlu
dEJhY2tncm91bmQgKHRoaXM9PG9wdGltaXplZCBvdXQ+LCB2ZXJ0aWNlcz0uLi4pIGF0IC9ob21l
L2Fuc2VsbW8vYXJjaC9hYnMva3dpbi9zcmMva3dpbi01LjMuMS9zY2VuZV9vcGVuZ2wuY3BwOjEw
NDkKIzggIDB4MDAwMDdmY2JjZjU0OGY5NSBpbiBLV2luOjpTY2VuZU9wZW5HTDo6cGFpbnRCYWNr
Z3JvdW5kICh0aGlzPXRoaXNAZW50cnk9MHhlZWNkODAsIHJlZ2lvbj0uLi4pIGF0IC9ob21lL2Fu
c2VsbW8vYXJjaC9hYnMva3dpbi9zcmMva3dpbi01LjMuMS9zY2VuZV9vcGVuZ2wuY3BwOjc0Mgoj
OSAgMHgwMDAwN2ZjYmNmNTMyZmI2IGluIEtXaW46OlNjZW5lOjpwYWludFNpbXBsZVNjcmVlbiAo
dGhpcz10aGlzQGVudHJ5PTB4ZWVjZDgwLCBvcmlnX21hc2s9b3JpZ19tYXNrQGVudHJ5PTgsIHJl
Z2lvbj0uLi4pIGF0IC9ob21lL2Fuc2VsbW8vYXJjaC9hYnMva3dpbi9zcmMva3dpbi01LjMuMS9z
Y2VuZS5jcHA6MzcxCiMxMCAweDAwMDA3ZmNiY2Y1NDNhZjMgaW4gS1dpbjo6U2NlbmVPcGVuR0wy
OjpwYWludFNpbXBsZVNjcmVlbiAodGhpcz10aGlzQGVudHJ5PTB4ZWVjZDgwLCBtYXNrPW1hc2tA
ZW50cnk9OCwgcmVnaW9uPS4uLikgYXQgL2hvbWUvYW5zZWxtby9hcmNoL2Ficy9rd2luL3NyYy9r
d2luLTUuMy4xL3NjZW5lX29wZW5nbC5jcHA6MTAxNQojMTEgMHgwMDAwN2ZjYmNmNTJkZGQ0IGlu
IEtXaW46OlNjZW5lOjpmaW5hbFBhaW50U2NyZWVuICh0aGlzPTB4ZWVjZDgwLCBtYXNrPW1hc2tA
ZW50cnk9OCwgcmVnaW9uPS4uLiwgZGF0YT0uLi4pIGF0IC9ob21lL2Fuc2VsbW8vYXJjaC9hYnMv
a3dpbi9zcmMva3dpbi01LjMuMS9zY2VuZS5jcHA6MjAxCiMxMiAweDAwMDA3ZmNiY2Y1NjhlMWYg
aW4gS1dpbjo6RWZmZWN0c0hhbmRsZXJJbXBsOjpwYWludFNjcmVlbiAodGhpcz0weDEzZTI2NDAs
IG1hc2s9bWFza0BlbnRyeT04LCByZWdpb249Li4uLCBkYXRhPS4uLikgYXQgL2hvbWUvYW5zZWxt
by9hcmNoL2Ficy9rd2luL3NyYy9rd2luLTUuMy4xL2VmZmVjdHMuY3BwOjM5NwojMTMgMHgwMDAw
N2ZjYmNjZDQxZDBmIGluIEtXaW46OkVmZmVjdDo6cGFpbnRTY3JlZW4gKHRoaXM9dGhpc0BlbnRy
eT0weDEwOGY4ZTAsIG1hc2s9bWFza0BlbnRyeT04LCByZWdpb249Li4uLCBkYXRhPS4uLikgYXQg
L2hvbWUvYW5zZWxtby9hcmNoL2Ficy9rd2luL3NyYy9rd2luLTUuMy4xL2xpYmt3aW5lZmZlY3Rz
L2t3aW5lZmZlY3RzLmNwcDo1MzUKIzE0IDB4MDAwMDdmY2JjZjU2OGRjYiBpbiBLV2luOjpFZmZl
Y3RzSGFuZGxlckltcGw6OnBhaW50U2NyZWVuICh0aGlzPTB4MTNlMjY0MCwgbWFzaz1tYXNrQGVu
dHJ5PTgsIHJlZ2lvbj0uLi4sIGRhdGE9Li4uKSBhdCAvaG9tZS9hbnNlbG1vL2FyY2gvYWJzL2t3
aW4vc3JjL2t3aW4tNS4zLjEvZWZmZWN0cy5jcHA6Mzk0CiMxNSAweDAwMDA3ZmNiY2NkNDFkMGYg
aW4gS1dpbjo6RWZmZWN0OjpwYWludFNjcmVlbiAodGhpcz10aGlzQGVudHJ5PTB4MTA5MWU2MCwg
bWFzaz1tYXNrQGVudHJ5PTgsIHJlZ2lvbj0uLi4sIGRhdGE9Li4uKSBhdCAvaG9tZS9hbnNlbG1v
L2FyY2gvYWJzL2t3aW4vc3JjL2t3aW4tNS4zLjEvbGlia3dpbmVmZmVjdHMva3dpbmVmZmVjdHMu
Y3BwOjUzNQojMTYgMHgwMDAwN2ZjYmNmNTY4ZGNiIGluIEtXaW46OkVmZmVjdHNIYW5kbGVySW1w
bDo6cGFpbnRTY3JlZW4gKHRoaXM9MHgxM2UyNjQwLCBtYXNrPTgsIHJlZ2lvbj0uLi4sIGRhdGE9
Li4uKSBhdCAvaG9tZS9hbnNlbG1vL2FyY2gvYWJzL2t3aW4vc3JjL2t3aW4tNS4zLjEvZWZmZWN0
cy5jcHA6Mzk0CiMxNyAweDAwMDA3ZmNiY2Y1MmQ5YmEgaW4gS1dpbjo6U2NlbmU6OnBhaW50U2Ny
ZWVuICh0aGlzPXRoaXNAZW50cnk9MHhlZWNkODAsIG1hc2s9bWFza0BlbnRyeT0weDdmZmViYWQ3
MDE3YywgZGFtYWdlPS4uLiwgcmVwYWludD0uLi4sIHVwZGF0ZVJlZ2lvbj11cGRhdGVSZWdpb25A
ZW50cnk9MHg3ZmZlYmFkNzAxOTAsIHZhbGlkUmVnaW9uPXZhbGlkUmVnaW9uQGVudHJ5PTB4N2Zm
ZWJhZDcwMWEwKQphdCAvaG9tZS9hbnNlbG1vL2FyY2gvYWJzL2t3aW4vc3JjL2t3aW4tNS4zLjEv
c2NlbmUuY3BwOjE1MQojMTggMHgwMDAwN2ZjYmNmNTQ5YWQxIGluIEtXaW46OlNjZW5lT3BlbkdM
OjpwYWludCAodGhpcz0weGVlY2Q4MCwgZGFtYWdlPS4uLiwgdG9wbGV2ZWxzPS4uLikgYXQgL2hv
bWUvYW5zZWxtby9hcmNoL2Ficy9rd2luL3NyYy9rd2luLTUuMy4xL3NjZW5lX29wZW5nbC5jcHA6
NjYxCiMxOSAweDAwMDA3ZmNiY2Y1MjU3YjMgaW4gS1dpbjo6Q29tcG9zaXRvcjo6cGVyZm9ybUNv
bXBvc2l0aW5nICh0aGlzPTB4ZTQ0YWUwKSBhdCAvaG9tZS9hbnNlbG1vL2FyY2gvYWJzL2t3aW4v
c3JjL2t3aW4tNS4zLjEvY29tcG9zaXRlLmNwcDo3MDEKIzIwIDB4MDAwMDdmY2JjZDdiYmE5MyBp
biBRT2JqZWN0OjpldmVudChRRXZlbnQqKSAoKSBmcm9tIC91c3IvbGliL2xpYlF0NUNvcmUuc28u
NQojMjEgMHgwMDAwN2ZjYmNlNDRjNjJjIGluIFFBcHBsaWNhdGlvblByaXZhdGU6Om5vdGlmeV9o
ZWxwZXIoUU9iamVjdCosIFFFdmVudCopICgpIGZyb20gL3Vzci9saWIvbGliUXQ1V2lkZ2V0cy5z
by41CiMyMiAweDAwMDA3ZmNiY2U0NTFkMTAgaW4gUUFwcGxpY2F0aW9uOjpub3RpZnkoUU9iamVj
dCosIFFFdmVudCopICgpIGZyb20gL3Vzci9saWIvbGliUXQ1V2lkZ2V0cy5zby41CiMyMyAweDAw
MDA3ZmNiY2Q3OGE1N2IgaW4gUUNvcmVBcHBsaWNhdGlvbjo6bm90aWZ5SW50ZXJuYWwoUU9iamVj
dCosIFFFdmVudCopICgpIGZyb20gL3Vzci9saWIvbGliUXQ1Q29yZS5zby41CiMyNCAweDAwMDA3
ZmNiY2Q3ZTBiMWQgaW4gUVRpbWVySW5mb0xpc3Q6OmFjdGl2YXRlVGltZXJzKCkgKCkgZnJvbSAv
dXNyL2xpYi9saWJRdDVDb3JlLnNvLjUKIzI1IDB4MDAwMDdmY2JjZDdkZjMzNiBpbiBRRXZlbnRE
aXNwYXRjaGVyVU5JWDo6cHJvY2Vzc0V2ZW50cyhRRmxhZ3M8UUV2ZW50TG9vcDo6UHJvY2Vzc0V2
ZW50c0ZsYWc+KSAoKSBmcm9tIC91c3IvbGliL2xpYlF0NUNvcmUuc28uNQojMjYgMHgwMDAwN2Zj
YmI1MmVhMmRkIGluID8/ICgpIGZyb20gL3Vzci9saWIvcXQvcGx1Z2lucy9wbGF0Zm9ybXMvbGli
cXhjYi5zbwojMjcgMHgwMDAwN2ZjYmNkNzg3ZmZhIGluIFFFdmVudExvb3A6OmV4ZWMoUUZsYWdz
PFFFdmVudExvb3A6OlByb2Nlc3NFdmVudHNGbGFnPikgKCkgZnJvbSAvdXNyL2xpYi9saWJRdDVD
b3JlLnNvLjUKIzI4IDB4MDAwMDdmY2JjZDc4ZmE0YyBpbiBRQ29yZUFwcGxpY2F0aW9uOjpleGVj
KCkgKCkgZnJvbSAvdXNyL2xpYi9saWJRdDVDb3JlLnNvLjUKIzI5IDB4MDAwMDdmY2JjZmM0ZTQy
MyBpbiBrZGVtYWluIChhcmdjPTEsIGFyZ3Y9MHg3ZmZlYmFkNzA5NTgpIGF0IC9ob21lL2Fuc2Vs
bW8vYXJjaC9hYnMva3dpbi9zcmMva3dpbi01LjMuMS9tYWluX3gxMS5jcHA6MzAwCiMzMCAweDAw
MDA3ZmNiY2Y4Yzc3OTAgaW4gX19saWJjX3N0YXJ0X21haW4gKCkgZnJvbSAvdXNyL2xpYi9saWJj
LnNvLjYKIzMxIDB4MDAwMDAwMDAwMDQwMDdlOSBpbiBfc3RhcnQgKCkKCg==
</data>

          </attachment>
      

    </bug>

</bugzilla>