Code

fix by kur9kin for endless loop from bug 212332
[inkscape.git] / src / display / nr-filter-specularlighting.cpp
index d579bf5f7da932d814eb7793f9d73f38135744a6..677f93dded1f355c39c02c59dc459aeecdaca389 100644 (file)
@@ -60,7 +60,7 @@ do {\
 }while(0)
 
 int FilterSpecularLighting::render(FilterSlot &slot, FilterUnits const &units) {
-    NRPixBlock *in = filter_get_alpha(slot.get(_input));
+    NRPixBlock *in = slot.get(_input);
     if (!in) {
         g_warning("Missing source image for feSpecularLighting (in=%d)", _input);
         return 1;
@@ -180,8 +180,8 @@ int FilterSpecularLighting::render(FilterSlot &slot, FilterUnits const &units) {
 
     //finishing
     slot.set(_output, out);
-    nr_pixblock_release(in);
-    delete in;
+    //nr_pixblock_release(in);
+    //delete in;
     return 0;
 }