• Rémi Denis-Courmont's avatar
    Fix gcc4 warnings (refs #258) · 5585f98e
    Rémi Denis-Courmont authored
    NOTE to developers :
    When you want to compare n bytes from two buffers, please use :
      memcmp( buf1, buf2, n )
    rather than :
      strncmp( buf1, buf2, n )
    
    strncmp should only be used if either of the buffers might be
    nul-terminated within its first n bytes.
    
    5585f98e
a52.c 9.59 KB