diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-01 06:26:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-01 06:26:24 +0800 |
commit | e7a7e7d1b421475da992e480b1b74e98ef568f6b (patch) | |
tree | 90bbeab4582d7893c436efc5ae353f46a6d59b00 | |
parent | 2bc231df3e10889ae7745311c6cde6ae0bb98b8e (diff) | |
download | gsoc2013-evolution-e7a7e7d1b421475da992e480b1b74e98ef568f6b.tar.gz gsoc2013-evolution-e7a7e7d1b421475da992e480b1b74e98ef568f6b.tar.zst gsoc2013-evolution-e7a7e7d1b421475da992e480b1b74e98ef568f6b.zip |
Bug 593614 - efh_format_secure() recurses forever
-rw-r--r-- | mail/em-format-html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index b9657a1fd9..37455a1bc4 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1477,7 +1477,7 @@ efh_format_secure(EMFormat *emf, CamelStream *stream, CamelMimePart *part, Camel { EMFormatClass *format_class; - format_class = EM_FORMAT_GET_CLASS (emf); + format_class = EM_FORMAT_CLASS (parent_class); g_return_if_fail (format_class->format_secure != NULL); format_class->format_secure (emf, stream, part, valid); |