[gimp/gimp-2-10] Issue #4392: Gimp Segmentation Fault triggered by Glib GParamSpec...



commit 573c043babce0620db715afa7696e5b06d7a0a3e
Author: Jehan <jehan girinstud io>
Date:   Tue Dec 24 01:32:57 2019 +0100

    Issue #4392: Gimp Segmentation Fault triggered by Glib GParamSpec...
    
    ... property name validation.
    Previous commit fixed the parameter name validation in core code. This
    commit fixes the source error in the plug-in code.

 plug-ins/pagecurl/pagecurl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/plug-ins/pagecurl/pagecurl.c b/plug-ins/pagecurl/pagecurl.c
index 048395ef83..c82dc8ab5e 100644
--- a/plug-ins/pagecurl/pagecurl.c
+++ b/plug-ins/pagecurl/pagecurl.c
@@ -195,7 +195,7 @@ query (void)
 
   static const GimpParamDef return_vals[] =
   {
-    { GIMP_PDB_LAYER, "Curl Layer", "The new layer with the curl." }
+    { GIMP_PDB_LAYER, "curl-layer", "The new layer with the curl." }
   };
 
   gimp_install_procedure (PLUG_IN_PROC,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]