From 15dc8b072e77cf69b36e3df94782af4801d5e8cc Mon Sep 17 00:00:00 2001
From: Brian Behlendorf <behlendorf1@llnl.gov>
Date: Tue, 17 Feb 2009 16:30:58 -0800
Subject: Coverity 9652, 9653: No Effect

Removed 2 ASSERT()s which had no effect because by definition
size_t is always an unsigned type thus is always >= 0.
---
 include/sys/random.h | 2 --
 1 file changed, 2 deletions(-)

(limited to 'include')

diff --git a/include/sys/random.h b/include/sys/random.h
index de386b634..2e206ccae 100644
--- a/include/sys/random.h
+++ b/include/sys/random.h
@@ -43,7 +43,6 @@ extern "C" {
 static __inline__ int
 random_get_bytes(uint8_t *ptr, size_t len)
 {
-	ASSERT(len >= 0);
 	get_random_bytes((void *)ptr,(int)len);
 	return 0;
 }
@@ -52,7 +51,6 @@ random_get_bytes(uint8_t *ptr, size_t len)
 static __inline__ int
 random_get_pseudo_bytes(uint8_t *ptr, size_t len)
 {
-	ASSERT(len >= 0);
 	get_random_bytes((void *)ptr,(int)len);
 	return 0;
 }
-- 
cgit v1.2.3