Browse Source

Close the file opened in ReadPhondataManifest on error.

master
Reece H. Dunn 9 years ago
parent
commit
be6ffd3449
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/prosodydisplay.cpp

+ 4
- 0
src/prosodydisplay.cpp View File

@@ -1,6 +1,7 @@
/***************************************************************************
* Copyright (C) 2005 to 2014 by Jonathan Duddington *
* email: [email protected] *
* Copyright (C) 2015 by Reece H. Dunn *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
@@ -106,7 +107,10 @@ void ReadPhondataManifest()
}

if((manifest = (NAMETAB *)realloc(manifest, n_lines * sizeof(NAMETAB))) == NULL)
{
fclose(f);
return;
}

n_manifest = 0;
while(fgets(buf, sizeof(buf), f) != NULL)

Loading…
Cancel
Save