Missed last commit

This commit is contained in:
Campbell Barton 2019-02-22 09:34:00 +11:00
parent b2906c2a4a
commit 98306c31bd
2 changed files with 0 additions and 5 deletions

View File

@ -1284,10 +1284,6 @@ FileData *blo_openblendermemfile(MemFile *memfile, ReportList *reports)
void blo_freefiledata(FileData *fd)
{
if (fd) {
if (fd->filedes != -1) {
close(fd->filedes);
}
if (fd->gzfiledes != NULL) {
gzclose(fd->gzfiledes);
}

View File

@ -63,7 +63,6 @@ typedef struct FileData {
struct MemFile *memfile;
/** Variables needed for reading from file. */
int filedes;
gzFile gzfiledes;
/** Now only in use for library appending. */