Fix memory leak

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@34954 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Germán Arias 2012-03-20 05:55:21 +00:00
parent 0215e55df9
commit ebdb1f7c90
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2012-03-19 German A. Arias <german@xelalug.org>
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m (-init):
Fix memory leak.
2012-03-19 German A. Arias <german@xelalug.org>
* EOAdaptors/SQLiteAdaptor/LoginPanel/sqlitelogo.tif:

View file

@ -105,9 +105,13 @@ static BOOL insideModalLoop = YES;
[_browse setAction:@selector(browse:)];
[[_win contentView] addSubview:_ok];
[_ok release];
[[_win contentView] addSubview:_cancel];
[_cancel release];
[[_win contentView] addSubview:_browse];
[_browse release];
[[_win contentView] addSubview:_path];
[_path release];
}
return self;