mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	Merged revisions 71031 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71031 | brett.cannon | 2009-04-01 20:17:39 -0700 (Wed, 01 Apr 2009) | 6 lines 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:
		
							parent
							
								
									3e2ea79bda
								
							
						
					
					
						commit
						a826f32054
					
				
					 3 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -3488,13 +3488,13 @@ PyImport_ExtendInittab(struct _inittab *newtab)
 | 
			
		|||
/* Shorthand to add a single entry given a name and a function */
 | 
			
		||||
 | 
			
		||||
int
 | 
			
		||||
PyImport_AppendInittab(char *name, PyObject* (*initfunc)(void))
 | 
			
		||||
PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
 | 
			
		||||
{
 | 
			
		||||
	struct _inittab newtab[2];
 | 
			
		||||
 | 
			
		||||
	memset(newtab, '\0', sizeof newtab);
 | 
			
		||||
 | 
			
		||||
	newtab[0].name = name;
 | 
			
		||||
	newtab[0].name = (char *)name;
 | 
			
		||||
	newtab[0].initfunc = initfunc;
 | 
			
		||||
 | 
			
		||||
	return PyImport_ExtendInittab(newtab);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue