[Asterisk-code-review] res fax: Remove checks for unsigned values being >= 0. (asterisk[13])

Corey Farrell asteriskteam at digium.com
Sat Nov 18 20:05:12 CST 2017


Corey Farrell has uploaded this change for review. ( https://gerrit.asterisk.org/7284


Change subject: res_fax: Remove checks for unsigned values being >= 0.
......................................................................

res_fax: Remove checks for unsigned values being >= 0.

It's impossible for gwtimeout or fdtimeout to be less than 0 because
they are unsigned int's.  Remove checks and unreachable branches.

Change-Id: Ib2286960621e6ee245e40013c84986143302bc78
---
M res/res_fax.c
1 file changed, 2 insertions(+), 13 deletions(-)



  git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/84/7284/1

diff --git a/res/res_fax.c b/res/res_fax.c
index 666c2d9..6e4451b 100644
--- a/res/res_fax.c
+++ b/res/res_fax.c
@@ -4563,12 +4563,7 @@
 					unsigned int gwtimeout;
 
 					if (sscanf(timeout, "%30u", &gwtimeout) == 1) {
-						if (gwtimeout >= 0) {
-							details->gateway_timeout = gwtimeout * 1000;
-						} else {
-							ast_log(LOG_WARNING, "%s(%s) timeout cannot be negative.  Ignoring timeout\n",
-								cmd, data);
-						}
+						details->gateway_timeout = gwtimeout * 1000;
 					} else {
 						ast_log(LOG_WARNING, "Unsupported timeout '%s' passed to FAXOPT(%s).\n", timeout, data);
 					}
@@ -4607,13 +4602,7 @@
 			if (details->faxdetect_id < 0) {
 				if (timeout) {
 					if (sscanf(timeout, "%30u", &fdtimeout) == 1) {
-						if (fdtimeout >= 0) {
-							fdtimeout *= 1000;
-						} else {
-							ast_log(LOG_WARNING, "%s(%s) timeout cannot be negative.  Ignoring timeout\n",
-								cmd, data);
-							fdtimeout = 0;
-						}
+						fdtimeout *= 1000;
 					} else {
 						ast_log(LOG_WARNING, "Unsupported timeout '%s' passed to FAXOPT(%s).\n",
 							timeout, data);

-- 
To view, visit https://gerrit.asterisk.org/7284
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib2286960621e6ee245e40013c84986143302bc78
Gerrit-Change-Number: 7284
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171118/05abdfae/attachment.html>


More information about the asterisk-code-review mailing list