~ubuntu-branches/ubuntu/breezy/koffice/breezy-security

« back to all changes in this revision

Viewing changes to filters/kchart/svg/svgexport.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-10-11 14:49:50 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051011144950-lwpngbifzp8nk0ds
Tags: 1:1.4.1-0ubuntu7
* SECURITY UPDATE: fix heap based buffer overflow in the RTF importer of KWord
* Opening specially crafted RTF files in KWord can cause
  execution of abitrary code.
* Add kubuntu_01_rtfimport_heap_overflow.diff
* References:
  CAN-2005-2971
  CESA-2005-005
  http://www.koffice.org/security/advisory-20051011-1.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Please add a license header here and change the copyright
 
2
// to your name.
 
3
//
 
4
// Copyright Inge Wallin
 
5
 
 
6
#ifndef __SVGEXPORT_H__
 
7
#define __SVGEXPORT_H__
 
8
 
 
9
#include <koFilter.h>
 
10
 
 
11
class SvgExport : public KoFilter
 
12
{
 
13
    Q_OBJECT
 
14
 
 
15
public:
 
16
    SvgExport(KoFilter *parent, const char *name, const QStringList&);
 
17
    virtual ~SvgExport();
 
18
 
 
19
    virtual KoFilter::ConversionStatus convert(const QCString& from, const QCString& to);
 
20
};
 
21
 
 
22
#endif // __SVGEXPORT_H__