Changeset 6c477241dc6ff1c7f7af55102625e397dd34f011

Show
Ignore:
Timestamp:
05/03/07 19:19:37 (2 years ago)
Author:
Damien Fouilleul <damienf@videolan.org>
git-committer:
Damien Fouilleul <damienf@videolan.org> 1173118777 +0000
git-parent:

[d68bf0d34c77501213177a0991d96ddbee96df93]

git-author:
Damien Fouilleul <damienf@videolan.org> 1173118777 +0000
Message:

getaddrinfo.c: a word of warning ...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/network/getaddrinfo.c

    r54b1dfa r6c47724  
    499499    if (entry != NULL) 
    500500    { 
     501        /* call API before replacing function pointer to avoid crash */ 
    501502        int result = entry (sa, salen, host, hostlen, serv, servlen, flags); 
    502503        ws2_getnameinfo = entry; 
     
    521522    if ((entry != NULL) && (freentry != NULL)) 
    522523    { 
     524        /* call API before replacing function pointer to avoid crash */ 
    523525        int result = entry (node, service, hints, res); 
    524526        ws2_freeaddrinfo = freentry;