(fkt_next_entry_int): remove a dereferencing NULL pointer, found by

IBM checker.


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16941 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-02 01:22:33 +00:00
parent fd1ea1cc54
commit 4b2323bd43

View File

@@ -423,7 +423,7 @@ loop:
}
}
if(start) *start = pos;
if(end) *end = *start + 4 + len;
if(end) *end = pos + 4 + len;
out:
krb5_storage_seek(cursor->sp, pos + 4 + len, SEEK_SET);
return ret;