Skip to content
  • Linus Torvalds's avatar
    Add generic 'strbuf_readlink()' helper function · b11b7e13
    Linus Torvalds authored and Junio C Hamano's avatar Junio C Hamano committed
    
    
    It was already what 'git apply' did in read_old_data(), just export it
    as a real function, and make it be more generic.
    
    In particular, this handles the case of the lstat() st_size data not
    matching the readlink() return value properly (which apparently happens
    at least on NTFS under Linux).  But as a result of this you could also
    use the new function without even knowing how big the link is going to
    be, and it will allocate an appropriately sized buffer.
    
    So we pass in the st_size of the link as just a hint, rather than a
    fixed requirement.
    
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    b11b7e13