# HG changeset patch # User Matti Hamalainen # Date 1579950362 -7200 # Node ID 9924d45189320ca653f084ca65cf0c23c476fea0 # Parent 0e818307e90be898185a543b771870d34d080b05 Adjust to th-libs ioctx API change. diff -r 0e818307e90b -r 9924d4518932 sidinfo.c --- a/sidinfo.c Fri Jan 24 04:55:09 2020 +0200 +++ b/sidinfo.c Sat Jan 25 13:06:02 2020 +0200 @@ -1043,7 +1043,7 @@ // Shutdown error: sidlib_free_sid_file(psid); - th_io_free(infh); + th_io_close(infh); return TRUE; } diff -r 0e818307e90b -r 9924d4518932 sidutil.c --- a/sidutil.c Fri Jan 24 04:55:09 2020 +0200 +++ b/sidutil.c Sat Jan 25 13:06:02 2020 +0200 @@ -383,7 +383,7 @@ } out: - th_io_free(infh); + th_io_close(infh); return res; } @@ -425,6 +425,6 @@ } out: - th_io_free(infh); + th_io_close(infh); return res; }