mirror of
				https://github.com/boostorg/utility.git
				synced 2025-11-04 02:11:45 +01:00 
			
		
		
		
	Fix potential overflow in substr; Trac #11536. Also change string_view::copy to use the traits::copy
This commit is contained in:
		@@ -162,9 +162,7 @@ namespace boost {
 | 
			
		||||
        basic_string_ref substr(size_type pos, size_type n=npos) const {
 | 
			
		||||
            if ( pos > size())
 | 
			
		||||
                BOOST_THROW_EXCEPTION( std::out_of_range ( "string_ref::substr" ) );
 | 
			
		||||
            if ( n == npos || pos + n > size())
 | 
			
		||||
                n = size () - pos;
 | 
			
		||||
            return basic_string_ref ( data() + pos, n );
 | 
			
		||||
            return basic_string_ref(data() + pos, (std::min)(size() - pos, n));
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
        int compare(basic_string_ref x) const {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user