Mercurial > pidgin.yaz
comparison 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 |
comparison
equal
deleted
inserted
replaced
13398:bddf037063bd | 13399:18d5d4018604 |
---|---|
822 #endif /* _WIN32 */ | 822 #endif /* _WIN32 */ |
823 } | 823 } |
824 } | 824 } |
825 else | 825 else |
826 { | 826 { |
827 if (*rest != NULL && *c != '\0') | 827 if (rest != NULL && *c != '\0') |
828 *rest = c; | 828 *rest = c; |
829 } | 829 } |
830 } | 830 } |
831 | 831 |
832 if (tm != NULL) | 832 if (tm != NULL) |