mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
PyImport_AppendInittab() took a char * as a first argument even though that
string was stored beyond the life of the call. Changed the signature to be const char * to help make this point. Closes issue #1419652.
This commit is contained in:
@@ -3376,7 +3376,7 @@ PyImport_ExtendInittab(struct _inittab *newtab)
|
||||
/* Shorthand to add a single entry given a name and a function */
|
||||
|
||||
int
|
||||
PyImport_AppendInittab(char *name, void (*initfunc)(void))
|
||||
PyImport_AppendInittab(const char *name, void (*initfunc)(void))
|
||||
{
|
||||
struct _inittab newtab[2];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user