mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 18:48:08 +00:00 
			
		
		
		
	Vault3991 Fix lower bound check (#13727)
* code scanning alerts changes * adding changelog * fixing lower bound check
This commit is contained in:
		| @@ -377,7 +377,7 @@ func (i *uintValue) Set(s string) error { | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	if v > 0 && v <= math.MaxUint { | ||||
| 	if v >= 0 && v <= math.MaxUint { | ||||
| 		*i.target = uint(v) | ||||
| 		return nil | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 akshya96
					akshya96