diff --git a/src/lib-sieve/sieve-script.c b/src/lib-sieve/sieve-script.c index 05d175320978decc063c9d4dcd320cf44ee6717b..d11e679b4ac2f5106f5c8444cd4d872ba415f6e8 100644 --- a/src/lib-sieve/sieve-script.c +++ b/src/lib-sieve/sieve-script.c @@ -334,7 +334,10 @@ uoff_t sieve_script_get_size(const struct sieve_script *script) int sieve_script_cmp (const struct sieve_script *script1, const struct sieve_script *script2) -{ +{ + if ( script1 == NULL || script2 == NULL ) + return -1; + return ( script1->st.st_ino == script2->st.st_ino ) ? 0 : -1; }