mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-15 16:10:46 +00:00
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:
parent
0215e55df9
commit
ebdb1f7c90
2 changed files with 9 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue