summary refs log tree commit diff stats
path: root/slirp/tcp_timer.c
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-08-01 10:13:20 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-08-01 10:13:20 +0000
commit7cba04f6dedcf888170496bf8f1857c4069d1131 (patch)
treeaffaa99c83934efb6c95255ee6bf36973f5be860 /slirp/tcp_timer.c
parent660f11be541813be5f09fbaf44d8e7c6d5a5bbfe (diff)
downloadfocaccia-qemu-7cba04f6dedcf888170496bf8f1857c4069d1131.tar.gz
focaccia-qemu-7cba04f6dedcf888170496bf8f1857c4069d1131.zip
More NULL pointer fixes
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'slirp/tcp_timer.c')
-rw-r--r--slirp/tcp_timer.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/slirp/tcp_timer.c b/slirp/tcp_timer.c
index 556e32eadd..6c5bb11cc3 100644
--- a/slirp/tcp_timer.c
+++ b/slirp/tcp_timer.c
@@ -74,13 +74,15 @@ tcp_slowtimo(Slirp *slirp)
 	 * Search through tcb's and update active timers.
 	 */
 	ip = slirp->tcb.so_next;
-	if (ip == 0)
-	   return;
+        if (ip == NULL) {
+            return;
+        }
 	for (; ip != &slirp->tcb; ip = ipnxt) {
 		ipnxt = ip->so_next;
 		tp = sototcpcb(ip);
-		if (tp == 0)
-			continue;
+                if (tp == NULL) {
+                        continue;
+                }
 		for (i = 0; i < TCPT_NTIMERS; i++) {
 			if (tp->t_timer[i] && --tp->t_timer[i] == 0) {
 				tcp_timers(tp,i);