Kaydet (Commit) ea271f2d authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

[Bug #982806] The default argument for opening GDBM files is bogus. Patch #984672 by James Lamanna

üst 1263bd8b
...@@ -434,7 +434,7 @@ static PyObject * ...@@ -434,7 +434,7 @@ static PyObject *
dbmopen(PyObject *self, PyObject *args) dbmopen(PyObject *self, PyObject *args)
{ {
char *name; char *name;
char *flags = "r "; char *flags = "r";
int iflags; int iflags;
int mode = 0666; int mode = 0666;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment