* src/image.c (svg_load): Temporarily disabled filename thing for
not-a-file case as it can cause crashs.
+2014-12-17 Ulf Jasper <ulf.jasper@web.de>
+
+ Partially disabled previous change.
+
+ * image.c (svg_load): Temporarily disabled filename thing for
+ not-a-file case as it can cause crashs.
+
2014-12-17 Ulf Jasper <ulf.jasper@web.de>
Fix problem with images referenced within svg files. (bug#19373)
return 0;
}
original_filename = BVAR (current_buffer, filename);
+ /* FIXME: disabled the filename thing for the time being as it
+ can cause crashs. */
success_p = svg_load_image (f, img, SDATA (data), SBYTES (data),
- SDATA(original_filename));
+ NULL /* SDATA(original_filename) */);
}
return success_p;