mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when
re-initializing a buffered IO object by calling its `__init__` method.
This commit is contained in:
		
							parent
							
								
									e6c5950af0
								
							
						
					
					
						commit
						c881f1592f
					
				
					 2 changed files with 5 additions and 0 deletions
				
			
		| 
						 | 
					@ -29,6 +29,9 @@ Extensions
 | 
				
			||||||
Library
 | 
					Library
 | 
				
			||||||
-------
 | 
					-------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when
 | 
				
			||||||
 | 
					  re-initializing a buffered IO object by calling its ``__init__`` method.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Issue #1713: Fix os.path.ismount(), which returned true for symbolic links
 | 
					- Issue #1713: Fix os.path.ismount(), which returned true for symbolic links
 | 
				
			||||||
  across devices.
 | 
					  across devices.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -636,6 +636,8 @@ _buffered_init(buffered *self)
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
#ifdef WITH_THREAD
 | 
					#ifdef WITH_THREAD
 | 
				
			||||||
 | 
					    if (self->lock)
 | 
				
			||||||
 | 
					        PyThread_free_lock(self->lock);
 | 
				
			||||||
    self->lock = PyThread_allocate_lock();
 | 
					    self->lock = PyThread_allocate_lock();
 | 
				
			||||||
    if (self->lock == NULL) {
 | 
					    if (self->lock == NULL) {
 | 
				
			||||||
        PyErr_SetString(PyExc_RuntimeError, "can't allocate read lock");
 | 
					        PyErr_SetString(PyExc_RuntimeError, "can't allocate read lock");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue