Skip to content

Commit

Permalink
unfixing memory leak, caused some crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegrosjean committed Oct 1, 2009
1 parent 7d32ee4 commit 1717c87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BBAppSessionLoginState.m
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ - (void)dealloc
- (LSSharedFileListItemRef)itemRefForApp
{
UInt32 seed;
NSArray *items = [(NSArray *)LSSharedFileListCopySnapshot(_sessionLoginItemsList, &seed) autorelease];
NSArray *items = (NSArray *)LSSharedFileListCopySnapshot(_sessionLoginItemsList, &seed);

for (id item in items) {
LSSharedFileListItemRef itemRef = (LSSharedFileListItemRef)item;
Expand Down
4 changes: 2 additions & 2 deletions QuickCursor-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2-Development</string>
<string>1.1.3-Development</string>
<key>CFBundleVersion</key>
<string>12</string>
<string>13</string>
<key>SUFeedURL</key>
<string>http://hogbaysoftware.com/products/quickcursor/releases.rss</string>
<key>NSMainNibFile</key>
Expand Down

0 comments on commit 1717c87

Please sign in to comment.