! Please note that this is a snapshot of our old Bugzilla server, which is read only since May 29, 2020. Please go to gitlab.xfce.org for our new server !
Eclipse crashes frequently with Xfce 4.12
Status:
RESOLVED: FIXED

Comments

Description mario89 2015-05-06 12:47:36 CEST
== Summary ==
I'm running Xubuntu 14.04 and I upgraded Xfce from 4.10 to 4.12 (through adding "xubuntu-dev/xfce-4.12" ppa). After that, Eclipse became instable and crashes under several circumstances (e.g. creating new project). There are several reports that indicate that this is related to xfce 4.12 - at least it the only thing all those reports have in common.


== My environment ==

- Xubuntu 14.04 64-bit with Linux kernel 3.13.0-49-generic
- xfce 4.12 (upgraded from 4.10 by adding "xubuntu-dev/xfce-4.12" ppa)
- Running as VMware guest (VMware Workstation 11.0.1, latest hardware capabilities and VMware tools)

This bug also appears on the following configurations, according to reports I found on the internet:

1) Xubuntu 15.04 on a Dell Laptop with an Intel Graphics-Card, source: http://askubuntu.com/questions/616995/three-different-eclipse-versions-all-crash-with-badwindow-on-15-04

2) Slackware-current x86_64, custom kernel 4.0 on a Dell xps lx502 (Optimus nvidia/intel hybrid) running on the intel GPU, source: https://forum.xfce.org/viewtopic.php?pid=37345#p37345


== Steps to reproduce ==

I experience this issue under several circumstances, it appears to be random.
However, I could find a series of steps that always lead to a crash:
- Start eclipse
- Go to File > New > Project.... > Java Project > Finish

There are also reports that Eclipse crashes right after startup, but in my case it doesn't do that. Source: https://forum.xfce.org/viewtopic.php?pid=37345#p37345

Affected Eclipse versions: (testes by myself) 3.8.1, 4.4.2 and (reported by others) 4.3.2
Affected Java versions: (tested by myself) OpenJDK 7, Oracle Java 8 and (reported by others) Oracle Java 7


== Expected behavior ==

Eclipse does not crash.


== Actual behavior ==

Eclipse crashes.

It shows the following error message:

> JVM terminated. Exit code=1
> /usr/bin/java
> -Dosgi.requiredJavaVersion=1.6
> -XX:MaxPermSize=1024m
> -Xms80m
> -Xmx2048m
> -jar /home/dominik/Applications/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
> -os linux
> -ws gtk
> -arch x86_64
> -showsplash /home/dominik/Applications/eclipse//plugins/org.eclipse.platform_4.4.2.v20150204-1700/splash.bmp
> -launcher /home/dominik/Applications/eclipse/eclipse
> -name Eclipse
> --launcher.library /home/dominik/Applications/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20150204-1316/eclipse_1607.so
> -startup /home/dominik/Applications/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
> --launcher.appendVmargs
> -exitdata 38000f
> -product org.eclipse.epp.package.java.product
> -vm /usr/bin/java
> -vmargs
> -Dosgi.requiredJavaVersion=1.6
> -XX:MaxPermSize=1024m
> -Xms80m
> -Xmx2048m
> -jar /home/dominik/Applications/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar

And if launched from a terminal, the following is displayed in the terminal window:

> The program 'Eclipse' received an X Window System error.
> This probably reflects a bug in the program.
> The error was 'BadWindow (invalid Window parameter)'.
>   (Details: serial 28725 error_code 3 request_code 3 minor_code 0)
>   (Note to programmers: normally, X errors are reported asynchronously;
>    that is, you will receive the error a while after causing it.
>    To debug your program, run it with the --sync command line
>    option to change this behavior. You can then get a meaningful
>    backtrace from your debugger if you break on the gdk_x_error() function.)
Comment 1 mario89 2015-05-06 12:50:13 CEST
I forgot to mention that after downgrading back to 4.10, the instability disappeared and eclipse worked fine again (in my case).
Comment 2 Olivier Fourdan editbugs 2015-05-06 13:15:06 CEST
Very unlikely related to the window manager. Applications crash are applications issues, not the window manager (the fact that it reports a BadWindow simnply means that the application is trying to refer to one of its window -not necessarily a top window- whic his invalid, either wrong window id or the window is gone).

Beside, "xfce 4.12" is a lot of packages and changes, not just hte window manager.

I am thinking in particular of the theme engine. Can you reproduce with xfce 4.12 using the same gtk engine?

PS: Eclipse seems perfectly stable here (Eclipse Luna SR2 (4.4.2) on Fedora 22)
Comment 3 Olivier Fourdan editbugs 2015-05-06 13:40:22 CEST
Could you please doing as instructed in the error message? That part:

> >    To debug your program, run it with the --sync command line
> >    option to change this behavior. You can then get a meaningful
> >    backtrace from your debugger if you break on the gdk_x_error() function.)

Basically, you have to run Eclipse in synchronous mode within gdb and break on "gdk_x_error" so that when the error occurs, you can capture a backtrace of Eclipse to tell the code path that led to this error. Make sure you have the debugging symbols installed so that the backtrace is meaningful (unfortunately I have no idea how to do that on Ubuntu/Debian)

The error provided is far from being sufficient to investigate the problem, all I can tell from what is provided is that Eclipse tried to issue an XGetWindowAttributes() (this is the request code 3) which failed because the given value for the Window argument does not name a defined Window.
Comment 4 Olivier Fourdan editbugs 2015-05-07 09:02:21 CEST
Meanwhile I've installed Xubuntu 15.04 in a VM and tried to reproduce using the method described in comment #0, using both Eclipse 3.8 as shipped with Xubuntu 15.04 and upstream Eclipse 4.4.2 as well, but could not reproduce, Eclipse ran just fine.
Comment 5 mario89 2015-05-07 21:50:50 CEST
Thank you very much for your looking into this issue.

I actually tried run eclipse --sync withing gdb and set a breakpoint at gdk_x_error, but unfortunately I didn't receive a backtrace. In Ubuntu, you can install debug symbols for a specific package by installing <packagename>-dbg or <packagename>-dbgsym. (These debug symbols are then stored at a common location so gdb finds them automatically)
I have installed all eclipse*-dbgsym, libgtk-3-0-dbg, libgtk-2-0-dbg and xfwm4-dbg debug symbols, but it still doesn't find a function named gdk_x_error. If you can name me the packages that contain the gdk_x_error function, I will install the corresponding debug symbols and give it another try.
Comment 6 Olivier Fourdan editbugs 2015-05-11 09:34:22 CEST
(In reply to mario89 from comment #5)
> Thank you very much for your looking into this issue.
> 
> I actually tried run eclipse --sync withing gdb and set a breakpoint at
> gdk_x_error, but unfortunately I didn't receive a backtrace. [...]

gdk_x_error() is a function defined in libgdk qhich comes with gtk+.

It's a shared library which gets loaded at runtime, meaning that gdb may not find it until it's loaded, i.e. once the program is being run.

E.g.: 

  $ gdb $(which eclipse)
  ...
  (gdb) break gdk_x_error
  Function "gdk_x_error" not defined.
  Make breakpoint pending on future shared library load? (y or [n]) y
  Breakpoint 1 (gdk_x_error) pending.
  (gdb) run --sync
  Starting program: /usr/bin/eclipse --sync
  [Thread debugging using libthread_db enabled]
  ...

Once the error occured, it will reach gdk_x_error() and gdb will stop there, you need to ask for the backtrace with:

  (gdb) bt
  ...


Note, you may want to get in touch with Eclipse devs as well, maybe they heard of that. I still find it weird that I cannot reproduce this on any platform (not even on Xubuntu 15.04 which, you said, was affected) - So it may be something in the environment, like the theme.

Anyhow, I think it's worth getting in touch with Eclipse devs as well.
Comment 7 Dmitry 2015-05-15 09:50:47 CEST
> Once the error occured, it will reach gdk_x_error() and gdb will stop there,
> you need to ask for the backtrace with:
> 
>   (gdb) bt

I have a similar problem to - Eclipse Luna randomly crashes with 'BadWindow (invalid Window parameter)'

My system is Xubuntu 15.04 on VirtualBox. On Xubuntu 14.10 on same VirtualBox Eslipse works fine.

Eclipse randomly crashes when I open C/C++ Makefile project and try to add new target in "Make Target", or make changes in Windows->Preferences and click OK or Cancel, or clicking button in other dialog boxes.

I'm installed libgtk2.0-0-dbg and libgtk-3-0-dbg and have a backtrace:

Breakpoint 1, gdk_x_error (display=0x8073800, error=0xbfffd4fc) at /build/buildd/gtk+2.0-2.24.27/gdk/x11/gdkmain-x11.c:458
(gdb) bt
#0  gdk_x_error (display=0x8073800, error=0xbfffd4fc) at /build/buildd/gtk+2.0-2.24.27/gdk/x11/gdkmain-x11.c:458
#1  0xb74b527a in _XError () from /usr/lib/i386-linux-gnu/libX11.so.6
#2  0xb74b231b in ?? () from /usr/lib/i386-linux-gnu/libX11.so.6
#3  0xb74b23d6 in ?? () from /usr/lib/i386-linux-gnu/libX11.so.6
#4  0xb74b3256 in _XReply () from /usr/lib/i386-linux-gnu/libX11.so.6
#5  0xb749a104 in _XGetWindowAttributes () from /usr/lib/i386-linux-gnu/libX11.so.6
#6  0xb749a246 in XGetWindowAttributes () from /usr/lib/i386-linux-gnu/libX11.so.6
#7  0xb74de921 in ?? () from /usr/lib/i386-linux-gnu/libX11.so.6
#8  0xb74df23f in _XimSetICDefaults () from /usr/lib/i386-linux-gnu/libX11.so.6
#9  0xb74df27a in _XimSetICDefaults () from /usr/lib/i386-linux-gnu/libX11.so.6
#10 0xb74da4ce in _XimLocalCreateIC () from /usr/lib/i386-linux-gnu/libX11.so.6
#11 0xb74bf943 in XCreateIC () from /usr/lib/i386-linux-gnu/libX11.so.6
#12 0xb66b83ed in gtk_im_context_xim_get_ic (context_xim=0x911b610) at /build/buildd/gtk+2.0-2.24.27/modules/input/gtkimcontextxim.c:1435
#13 0xb66b86b9 in gtk_im_context_xim_reset (context=0x911b610) at /build/buildd/gtk+2.0-2.24.27/modules/input/gtkimcontextxim.c:864
#14 0xb6818f3d in IA__gtk_im_context_reset (context=0x911b610) at /build/buildd/gtk+2.0-2.24.27/gtk/gtkimcontext.c:535
#15 0xb6818f3d in IA__gtk_im_context_reset (context=0x9143a40) at /build/buildd/gtk+2.0-2.24.27/gtk/gtkimcontext.c:535
#16 0xb1d8dade in Java_org_eclipse_swt_internal_gtk_OS__1gtk_1im_1context_1reset () from /home/virtual/eclipse/configuration/org.eclipse.osgi/351/0/.cp/libswt-pi-gtk-4430.so
#17 0xb3a3bbf3 in ?? ()
#18 0xb3a34207 in ?? ()
#19 0xb3a34207 in ?? ()
#20 0xb3a34207 in ?? ()
#21 0xb3a34207 in ?? ()
#22 0xb3a34207 in ?? ()
#23 0xb3a34207 in ?? ()
#24 0xb3a34207 in ?? ()
#25 0xb3a34207 in ?? ()
#26 0xb3a34207 in ?? ()
#27 0xb3a34207 in ?? ()
#28 0xb3a34207 in ?? ()
#29 0xb3a34207 in ?? ()
#30 0xb3a34207 in ?? ()
#31 0xb3a34207 in ?? ()
#32 0xb3a34207 in ?? ()
#33 0xb3a34207 in ?? ()
#34 0xb3a34207 in ?? ()
#35 0xb3a34207 in ?? ()
#36 0xb3a34207 in ?? ()
#37 0xb3a34207 in ?? ()
#38 0xb3a3447b in ?? ()
#39 0xb3a3447b in ?? ()
#40 0xb3a34207 in ?? ()
#41 0xb3a34207 in ?? ()
#42 0xb3a34785 in ?? ()
#43 0xb3e544f0 in ?? ()
#44 0xb3a34207 in ?? ()
#45 0xb3a34207 in ?? ()
#46 0xb3a3447b in ?? ()
#47 0xb3a3447b in ?? ()
#48 0xb3a34207 in ?? ()
#49 0xb3a3434f in ?? ()
#50 0xb3a34207 in ?? ()
#51 0xb3a34785 in ?? ()
#52 0xb3a34207 in ?? ()
#53 0xb3a34207 in ?? ()
#54 0xb3e544f0 in ?? ()
#55 0xb3a34207 in ?? ()
#56 0xb3a34207 in ?? ()
#57 0xb3a3447b in ?? ()
#58 0xb3a3447b in ?? ()
#59 0xb3a34785 in ?? ()
#60 0xb3a34207 in ?? ()
#61 0xb3a34918 in ?? ()
#62 0xb3a34207 in ?? ()
#63 0xb3a34785 in ?? ()
#64 0xb3a34207 in ?? ()
#65 0xb3a3434f in ?? ()
#66 0xb3a3434f in ?? ()
#67 0xb3a34918 in ?? ()
#68 0xb3a34918 in ?? ()
#69 0xb3a3439a in ?? ()
#70 0xb3a3439a in ?? ()
#71 0xb3a3439a in ?? ()
#72 0xb3a313d9 in ?? ()
#73 0xb5d4752f in JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#74 0xb5e76e67 in os::os_exception_wrapper(void (*)(JavaValue*, methodHandle*, JavaCallArguments*, Thread*), JavaValue*, methodHandle*, JavaCallArguments*, Thread*) ()
   from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#75 0xb5d46fbc in JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#76 0xb5eb8814 in Reflection::invoke(instanceKlassHandle, methodHandle, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#77 0xb5eb9839 in Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#78 0xb5d8e826 in JVM_InvokeMethod () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#79 0xb5a84cb3 in Java_sun_reflect_NativeMethodAccessorImpl_invoke0 () from /usr/lib/jvm/java-7-openjdk-i386/jre/lib/i386/libjava.so
#80 0xb3a3bbf3 in ?? ()
#81 0xb3a3439a in ?? ()
#82 0xb3a3439a in ?? ()
#83 0xb3a34918 in ?? ()
#84 0xb3a3439a in ?? ()
#85 0xb3a34207 in ?? ()
#86 0xb3a34207 in ?? ()
#87 0xb3a313d9 in ?? ()
#88 0xb5d4752f in JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#89 0xb5e76e67 in os::os_exception_wrapper(void (*)(JavaValue*, methodHandle*, JavaCallArguments*, Thread*), JavaValue*, methodHandle*, JavaCallArguments*, Thread*) ()
   from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#90 0xb5d46fbc in JavaCalls::call(JavaValue*, methodHandle, JavaCallArguments*, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#91 0xb5d57fac in jni_invoke_nonstatic(JNIEnv_*, JavaValue*, _jobject*, JNICallType, _jmethodID*, JNI_ArgumentPusher*, Thread*) () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#92 0xb5d658b4 in jni_CallIntMethod () from /usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so
#93 0xb7fd13d5 in startJavaJNI (libPath=0x804eee8 "/usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so", vmArgs=0x80c9460, progArgs=0x80c9480, 
    jarFile=0x804eff8 "/home/virtual/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar") at ../eclipseJNI.c:386
#94 0xb7fd2874 in startJavaVM (libPath=0x804eee8 "/usr/lib/jvm/java-7-openjdk-i386/jre/bin/../lib/i386/client/libjvm.so", vmArgs=0x80c9460, progArgs=0x80c9480, 
    jarFile=0x804eff8 "/home/virtual/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar") at ../eclipseNix.c:174
#95 0xb7fcc1d2 in _run (argc=2, argv=0x804e8c0, vmArgs=0x804eed0) at ../eclipse.c:633
#96 0xb7fcbbdf in run (argc=2, argv=0x804e8c0, vmArgs=0x804f260) at ../eclipse.c:465
#97 0x08049214 in main (argc=13, argv=0x804e8c0) at ../eclipseMain.c:214
Comment 8 Olivier Fourdan editbugs 2015-05-15 10:13:51 CEST
(In reply to Dmitry from comment #7)
> 
> I'm installed libgtk2.0-0-dbg and libgtk-3-0-dbg and have a backtrace:
> 
> Breakpoint 1, gdk_x_error (display=0x8073800, error=0xbfffd4fc) at
> /build/buildd/gtk+2.0-2.24.27/gdk/x11/gdkmain-x11.c:458
> (gdb) bt
> #0  gdk_x_error (display=0x8073800, error=0xbfffd4fc) at
> [...]
> #4  0xb74b3256 in _XReply () from /usr/lib/i386-linux-gnu/libX11.so.6
> #5  0xb749a104 in _XGetWindowAttributes () from
> /usr/lib/i386-linux-gnu/libX11.so.6
> #6  0xb749a246 in XGetWindowAttributes () from
> /usr/lib/i386-linux-gnu/libX11.so.6
> #7  0xb74de921 in ?? () from /usr/lib/i386-linux-gnu/libX11.so.6
> #8  0xb74df23f in _XimSetICDefaults () from
> /usr/lib/i386-linux-gnu/libX11.so.6
> #9  0xb74df27a in _XimSetICDefaults () from
> /usr/lib/i386-linux-gnu/libX11.so.6
> #10 0xb74da4ce in _XimLocalCreateIC () from
> /usr/lib/i386-linux-gnu/libX11.so.6
> #11 0xb74bf943 in XCreateIC () from /usr/lib/i386-linux-gnu/libX11.so.6
> #12 0xb66b83ed in gtk_im_context_xim_get_ic (context_xim=0x911b610) at
> /build/buildd/gtk+2.0-2.24.27/modules/input/gtkimcontextxim.c:1435
> #13 0xb66b86b9 in gtk_im_context_xim_reset (context=0x911b610) at
> /build/buildd/gtk+2.0-2.24.27/modules/input/gtkimcontextxim.c:864
> #14 0xb6818f3d in IA__gtk_im_context_reset (context=0x911b610) at
> /build/buildd/gtk+2.0-2.24.27/gtk/gtkimcontext.c:535
> #15 0xb6818f3d in IA__gtk_im_context_reset (context=0x9143a40) at
> /build/buildd/gtk+2.0-2.24.27/gtk/gtkimcontext.c:535
> [...]


You are still missing a lot of symbols from this backtrace, but it would still be helpful and gives some hints as it points toward IM (aka Input Method), nothing actually related to xfwm4 (as I said earlier, switching from xfce 4.10 to xfce 4.12 is a *lot* of changes, so even more when upgrading Xubuntu!)

1. Do you have multiple input methods installed? 
2. Which IM metod do you use (e.g. XIM, IBUS, SCIM, etc.)?
3. Do you have a IM plugin in xfce?
4. Can you disable IM entirely and reproduce?

(note, this is going quite off topic wrt xfwm4)
Comment 9 Olivier Fourdan editbugs 2015-05-15 10:19:06 CEST
What about trying this from a terminal:

  $ (export XMODIFIERS="@im=none"; ecplise)

I suspect this would disable IM for that particular ecplise session.
Comment 10 Dmitry 2015-05-15 11:49:14 CEST
(In reply to Olivier Fourdan from comment #8)
 
> 1. Do you have multiple input methods installed? 
> 2. Which IM metod do you use (e.g. XIM, IBUS, SCIM, etc.)?
> 3. Do you have a IM plugin in xfce?
> 4. Can you disable IM entirely and reproduce?

$ im-config
>Current configuration for the input method:
> * Active configuration: xim (normally missing)
> * Normal automatic choice: none (normally ibus or fcitx or uim)
> * Override rule: zh_CN,fcitx:zh_TW,fcitx:zh_HK,fcitx:zh_SG,fcitx
> * Current override choice:  (ru_RU)
> * Current automatic choice: none
> * Number of valid choices: 1 (normally 1

I don't manually install any IM metod. 
In "Language Support" "Keyboard input metod system" sets to "None" and no other available chooses in this dropbox.

(In reply to Olivier Fourdan from comment #9)

> What about trying this from a terminal:
> 
>   $ (export XMODIFIERS="@im=none"; ecplise)

Still randomly crashes.
Comment 11 Olivier Fourdan editbugs 2015-05-15 13:45:40 CEST
(In reply to Dmitry from comment #10)
> $ im-config
> > * Active configuration: xim (normally missing)
                            ^^^

There you go, you need to set this "active configuration" to "missing"

> >   $ (export XMODIFIERS="@im=none"; ecplise)
> 
> Still randomly crashes.

Yes, if I set up the same IM settimg as yours, I am able top reproduce. But that's not a window manager issue.
Comment 12 Olivier Fourdan editbugs 2015-05-15 14:28:53 CEST
(In reply to Olivier Fourdan from comment #11)
> But that's not a window manager issue.

Right, I take that back, the WM does influence, and I know the fix...

Meanwhile, simply avoid xim as a workaround.
Comment 13 Dmitry 2015-05-15 15:07:16 CEST
(In reply to Olivier Fourdan from comment #11)
> (In reply to Dmitry from comment #10)
> > $ im-config
> > > * Active configuration: xim (normally missing)
>                             ^^^
> 
> There you go, you need to set this "active configuration" to "missing"

When I set in im-config "active configuration" to "none" I can't crash Eclipse!
But, in Xubuntu 14.10 xim was sets in "Active configuration" and Eclipse works fine.

(In reply to Olivier Fourdan from comment #12)

> Meanwhile, simply avoid xim as a workaround.

Ok, this workaround was solved my problem.
Comment 14 Adam 2015-05-19 11:13:59 CEST
I have got the same problem running 
 * Xubuntu 14.04 amd64 with
 * upgraded XFCE from ppa:xubuntu-dev/xfce-4.12 

Eclipse 4.4.2 with Oracle Java 1.8.0_45 starts normally, but whenever a dialog/sub window is closed (i.e. help -> about eclipse) it crashes as described in the initial comment.  This behavior is 100% reproducible. 

Workaround 1 - Use another window manager.  I tried openbox.  When running eclipse with openbox, eclipse does not crash.

Workaround 2 - Downgrade xfwm4.  I downgraded xfwm4 to the one from the ubuntu repository

    sudo apt-get install xfwm4=4.11.1-2ubuntu2
    sudo apt-mark hold xfwm4

which seems to work because there is no huge tree of dependencies.  Eclipse does not crash when run under xfwm4 4.11.


This indicates that the 4.12 window manager might contain a bug.
Comment 15 Olivier Fourdan editbugs 2015-05-19 11:22:01 CEST
Fixed in 4.12.3

Bug #11893

Reported by:
mario89
Reported on: 2015-05-06
Last modified on: 2015-05-19

People

Assignee:
Olivier Fourdan
CC List:
1 user

Version

Version:
4.12.0

Attachments

Additional information