(Ubuntu) Temporarily disable freeing of pixmap as it crashes on EFL 1.24.0 60/244560/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 21 Sep 2020 18:37:15 +0000 (19:37 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Mon, 21 Sep 2020 18:37:15 +0000 (19:37 +0100)
Change-Id: Iaf9106f390472910d16b4ecd7d7bc2c038c26730

dali/internal/imaging/ubuntu-x11/native-image-source-impl-x.cpp

index 384844d..54ad246 100755 (executable)
@@ -139,7 +139,8 @@ NativeImageSourceX::~NativeImageSourceX()
 {
   if (mOwnPixmap && mPixmap)
   {
-    ecore_x_pixmap_free(mPixmap);
+    // Temporarily disable this as this causes a crash with EFL Version 1.24.0
+    //ecore_x_pixmap_free(mPixmap);
   }
 }