]> git.pld-linux.org Git - packages/bakefile.git/blob - format-security.patch
- fix format string warning
[packages/bakefile.git] / format-security.patch
1 --- bakefile-0.2.9/src/bkl_c_wrap.c~    2011-02-02 16:21:57.000000000 +0100
2 +++ bakefile-0.2.9/src/bkl_c_wrap.c     2012-12-12 12:30:12.717316507 +0100
3 @@ -850,7 +850,7 @@
4      Py_DECREF(old_str);
5      Py_DECREF(value);
6    } else {
7 -    PyErr_Format(PyExc_RuntimeError, mesg);
8 +    PyErr_Format(PyExc_RuntimeError, "%s", mesg);
9    }
10  }
11  
This page took 0.086262 seconds and 3 git commands to generate.