X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;ds=sidebyside;f=cinelerra-5.1%2Fcinelerra%2Fasset.C;h=3133649b9ae161077c3b1afdb49e8327452c9213;hb=af2d680fc71d16363f7f7fb7e602cb0c30015ee5;hp=fd17a1422a89b9bfdcca138e25f47ab5085b9f85;hpb=101d92b4c50a831fb00edd65df57de41b408c7b6;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/asset.C b/cinelerra-5.1/cinelerra/asset.C index fd17a142..3133649b 100644 --- a/cinelerra-5.1/cinelerra/asset.C +++ b/cinelerra-5.1/cinelerra/asset.C @@ -332,11 +332,13 @@ int Asset::equivalent(Asset &asset, int test_audio, int test_video, EDL *edl) if( out_path ) { if( *apath != '/' ) { char *cp = cstrcat(2, out_path, apath); - delete [] apath; apath = cp; + delete [] apath; apath = FileSystem::basepath(cp); + delete [] cp; } if( *tpath != '/' ) { char *cp = cstrcat(2, out_path, tpath); - delete [] tpath; tpath = cp; + delete [] tpath; tpath = FileSystem::basepath(cp); + delete [] cp; } } if( strcmp(apath, tpath) ) result = 1;