diff src/util.c @ 13399:18d5d4018604

[gaim-migrate @ 15773] Dereferencing the pointer-pointer to check if it's NULL. Oops, my bad. Resolves CID 11 committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 06 Mar 2006 17:01:32 +0000
parents 85b2ba4aa606
children 47e51939c923
line wrap: on
line diff
--- a/src/util.c	Mon Mar 06 16:57:34 2006 +0000
+++ b/src/util.c	Mon Mar 06 17:01:32 2006 +0000
@@ -824,7 +824,7 @@
 		}
 		else
 		{
-			if (*rest != NULL && *c != '\0')
+			if (rest != NULL && *c != '\0')
 				*rest = c;
 		}
 	}