* mmap.cc (mprotect): Add missing break.
This commit is contained in:
		@@ -1,3 +1,7 @@
 | 
			
		||||
2003-02-14  Jason Tishler  <jason@tishler.net>
 | 
			
		||||
 | 
			
		||||
	* mmap.cc (mprotect): Add missing break.
 | 
			
		||||
 | 
			
		||||
2003-02-13  Christopher Faylor  <cgf@redhat.com>
 | 
			
		||||
 | 
			
		||||
	* exceptions.cc (try_to_debug): Don't reset priority when returning
 | 
			
		||||
 
 | 
			
		||||
@@ -909,6 +909,7 @@ mprotect (caddr_t addr, size_t len, int prot)
 | 
			
		||||
	break;
 | 
			
		||||
      case PROT_READ:
 | 
			
		||||
	new_prot = PAGE_READONLY;
 | 
			
		||||
	break;
 | 
			
		||||
      case PROT_EXEC:
 | 
			
		||||
	new_prot = PAGE_EXECUTE;
 | 
			
		||||
	break;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user