Check whether init and term are actually given

This commit is contained in:
Nick Hibma 1999-10-05 20:32:53 +00:00
parent d7576d81ca
commit d8add747ef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51954

View File

@ -83,7 +83,7 @@ splash_test(splash_decoder_t *decoder)
{
if (splash_find_data(decoder))
return ENOENT; /* XXX */
if ((*decoder->init)(splash_adp)) {
if (*decoder->init && (*decoder->init)(splash_adp)) {
decoder->data = NULL;
decoder->data_size = 0;
return ENODEV; /* XXX */
@ -193,7 +193,7 @@ splash_term(video_adapter_t *adp)
if (splash_decoder != NULL) {
if (splash_callback != NULL)
error = (*splash_callback)(SPLASH_TERM, splash_arg);
if (error == 0)
if (error == 0 && splash_decoder->term)
error = (*splash_decoder->term)(adp);
if (error == 0)
splash_decoder = NULL;