Details
- 
    
Bug
 - 
    Status: Closed (View Workflow)
 - 
    
Minor
 - 
    Resolution: Won't Fix
 - 
    10.2.9
 
Description
Source code is
					switch (type) {  | 
		
					case GRN_DB_UINT8 :  | 
		
					if (is_negative_value(src)) {  | 
		
					      GRN_UINT8_SET(ctx, dest, 0);
			 | 
		
					return GRN_TRUE;  | 
		
					    }
			 | 
		
					case GRN_DB_UINT16 :  | 
		
					if (is_negative_value(src)) {  | 
		
					      GRN_UINT16_SET(ctx, dest, 0);
			 | 
		
					return GRN_TRUE;  | 
		
					    }
			 | 
		
Suggest add missing break statements throughout this switch statement.