Changeset 9583fbe0872045afbadf4e822ab8881932e7c057

Show
Ignore:
Timestamp:
11/25/06 10:03:44 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1164445424 +0000
git-parent:

[4466cc4ffaa424dd4b6c19e70d7a6e886253aa5f]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1164445424 +0000
Message:

Fix invalid mix of closedir and free on Win32.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/text/unicode.c

    re219a08 r9583fbe  
    435435    if( local_name != NULL ) 
    436436    { 
    437         DIR *dir = vlc_opendir_wrapper( local_name ); 
     437        DIR *dir = opendir( local_name ); 
    438438        LocaleFree( local_name ); 
    439439        return dir; 
     
    449449    struct dirent *ent; 
    450450 
    451     ent = vlc_readdir_wrapper( (DIR *)dir ); 
     451    ent = readdir( (DIR *)dir ); 
    452452    if( ent == NULL ) 
    453453        return NULL;