Changeset 355e0a3776c72500f16f9d6cccc28682c812969b

Show
Ignore:
Timestamp:
02/02/06 12:59:15 (3 years ago)
Author:
Sigmund Augdal Helberg <sigmunau@videolan.org>
git-committer:
Sigmund Augdal Helberg <sigmunau@videolan.org> 1138881555 +0000
git-parent:

[18f8461307c499afe662c52a990792b399d93d1e]

git-author:
Sigmund Augdal Helberg <sigmunau@videolan.org> 1138881555 +0000
Message:

es_out.c: fixed a slight memleak in "now playing" handling.
This one is slightly dangerous as it can happen over and over again during
normal operation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/input/es_out.c

    r31e0a13 r355e0a3  
    627627    if( psz_now_playing ) 
    628628    { 
     629        if( p_pgrm->psz_now_playing ) free( p_pgrm->psz_now_playing ); 
    629630        p_pgrm->psz_now_playing = strdup(psz_now_playing); 
    630631