Skip to content

Commit

Permalink
Fix, was memory leaking parameter storage of generators.
Browse files Browse the repository at this point in the history
* This is not about the actual parameter objects, rather the storage
  used to hold their values.
  • Loading branch information
kayhayen committed Dec 3, 2015
1 parent ee2a564 commit e38f0a8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nuitka/build/static_src/CompiledGeneratorType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ static void Nuitka_Generator_release_parameters( Nuitka_GeneratorObject *generat
}
}

free( generator->m_parameters );
generator->m_parameters = NULL;
}

Expand Down

0 comments on commit e38f0a8

Please sign in to comment.