Skip to content

Commit

Permalink
disable blob support for SVG coder @ #192
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Nov 15, 2022
1 parent 534100a commit fd4f60b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions coders/svg.c
Original file line number Diff line number Diff line change
Expand Up @@ -3792,6 +3792,7 @@ ModuleExport size_t RegisterSVGImage(void)
entry->decoder=(DecodeImageHandler *) ReadSVGImage;
entry->encoder=(EncodeImageHandler *) WriteSVGImage;
entry->seekable_stream=MagickFalse;
entry->blob_support=MagickFalse;
#if defined(MAGICKCORE_RSVG_DELEGATE)
entry->thread_support=MagickFalse;
#endif
Expand All @@ -3808,6 +3809,7 @@ ModuleExport size_t RegisterSVGImage(void)
#endif
entry->encoder=(EncodeImageHandler *) WriteSVGImage;
entry->seekable_stream=MagickFalse;
entry->blob_support=MagickFalse;
#if defined(MAGICKCORE_RSVG_DELEGATE)
entry->thread_support=MagickFalse;
#endif
Expand All @@ -3824,6 +3826,7 @@ ModuleExport size_t RegisterSVGImage(void)
#endif
entry->encoder=(EncodeImageHandler *) WriteSVGImage;
entry->seekable_stream=MagickFalse;
entry->blob_support=MagickFalse;
#if defined(MAGICKCORE_RSVG_DELEGATE)
entry->thread_support=MagickFalse;
#endif
Expand Down

0 comments on commit fd4f60b

Please sign in to comment.