Browse Source

Delete spectseq on error conditions.

master
Reece H. Dunn 9 years ago
parent
commit
6ae765f0f4
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      src/compiledata.cpp

+ 3
- 1
src/compiledata.cpp View File

@@ -1,7 +1,7 @@
/***************************************************************************
* Copyright (C) 2005 to 2014 by Jonathan Duddington *
* email: [email protected] *
* Copyright (C) 2013 by Reece H. Dunn *
* Copyright (C) 2013-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 *
@@ -1649,6 +1649,7 @@ int LoadSpect(const char *path, int control)
if(stream.Ok() == FALSE)
{
error("Failed to open: '%s'",path);
delete spectseq;
return(0);
}
spectseq->Load(stream);
@@ -1656,6 +1657,7 @@ int LoadSpect(const char *path, int control)
if(spectseq->frames == NULL)
{
error("Bad vowel file, no frames: '%s'",path);
delete spectseq;
return(0);
}


Loading…
Cancel
Save