This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Timeline: Fix double free in project open
Closes
#71
tags/non-daw-v1.2.0
Jonathan Moore Liles
11 years ago
parent
e6d153c13c
commit
d2b2c0808d
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
timeline/src/Project.C
+ 2
- 2
timeline/src/Project.C
View File
@@ -326,8 +326,8 @@ Project::open ( const char *name )
else
*_created_on = 0;
free( created_by );
free( creation_date
);
if ( created_by )
free( created_by
);
set_name( name );
Write
Preview
Loading…
Cancel
Save