jlec        15/06/26 12:05:17

  Added:                pyfltk-1.3.0-format-security.patch
  Log:
  Add fix for format-security, bug #553314
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  Changes    Path
1.1                  dev-python/pyfltk/files/pyfltk-1.3.0-format-security.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/files/pyfltk-1.3.0-format-security.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyfltk/files/pyfltk-1.3.0-format-security.patch?rev=1.1&content-type=text/plain

Index: pyfltk-1.3.0-format-security.patch
===================================================================
 python/fltk_wrap.cpp | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/python/fltk_wrap.cpp b/python/fltk_wrap.cpp
index 9c16f59..ad42e89 100644
--- a/python/fltk_wrap.cpp
+++ b/python/fltk_wrap.cpp
@@ -5238,13 +5238,13 @@ PyObject *Fl_get_font_sizes_tmp(PyObject *self, 
PyObject *args)
 
   const char *fl_vararg_input(const char *label, const char *deflt = 0) {
     const char* result = 0;
-    result = fl_input(label, deflt);
+    result = fl_input("%s", deflt, label);
     return result;
   };
 
   const char *fl_vararg_password(const char *label, const char *deflt = 0) {
     const char* result = 0;
-    result = fl_password(label, deflt);
+    result = fl_password("%s", deflt, label);
     return result;
   };
 
@@ -5282,20 +5282,20 @@ PyObject *Fl_get_font_sizes_tmp(PyObject *self, 
PyObject *args)
 
   void fl_mt_message(const char* text) {
     Py_BEGIN_ALLOW_THREADS;
-    fl_message(text);
+    fl_message("%s", text);
     Py_END_ALLOW_THREADS;
   };
 
   void fl_mt_alert(const char* text) {
     Py_BEGIN_ALLOW_THREADS;
-    fl_alert(text);
+    fl_alert("%s", text);
     Py_END_ALLOW_THREADS;
   };
 
   int fl_mt_ask(const char* text) {
     int status = 0;
     Py_BEGIN_ALLOW_THREADS;
-    status = fl_ask(text);
+    status = fl_ask("%s", text);
     Py_END_ALLOW_THREADS;
     return status;
   };
@@ -5303,7 +5303,7 @@ PyObject *Fl_get_font_sizes_tmp(PyObject *self, PyObject 
*args)
   int fl_mt_choice(const char *q,const char *b0,const char *b1,const char *b2) 
{
     int status = 0;
     Py_BEGIN_ALLOW_THREADS;
-    status = fl_choice(q, b0, b1, b2);
+    status = fl_choice("%s", b0, b1, b2, q);
     Py_END_ALLOW_THREADS;
     return status;
   };
@@ -5311,7 +5311,7 @@ PyObject *Fl_get_font_sizes_tmp(PyObject *self, PyObject 
*args)
   const char *fl_mt_input(const char *label, const char *deflt = 0) {
     const char* result = 0;
     Py_BEGIN_ALLOW_THREADS;
-    result = fl_input(label, deflt);
+    result = fl_input("%s", deflt, label);
     Py_END_ALLOW_THREADS;
     return result;
   };
@@ -5319,7 +5319,7 @@ PyObject *Fl_get_font_sizes_tmp(PyObject *self, PyObject 
*args)
   const char *fl_mt_password(const char *label, const char *deflt = 0) {
     const char* result = 0;
     Py_BEGIN_ALLOW_THREADS;
-    result = fl_password(label, deflt);
+    result = fl_password("%s", deflt, label);
     Py_END_ALLOW_THREADS;
     return result;
   };




Reply via email to