Boost logo

Boost-Build :

From: cherry314159 (cherry314159_at_[hidden])
Date: 2004-10-22 02:07:43


Here's a context diff applied to Milestone 10 preview 2.

*** filent.c.old Thu Oct 21 16:13:09 2004
--- filent.c Fri Oct 22 12:28:55 2004
***************
*** 251,258 ****
** in ASCII decimals.
*/

! name = string_table + atoi( ar_hdr.ar_name + 1 );
! endname = name + strlen( name );
}
else
{
--- 251,259 ----
** in ASCII decimals.
*/

! endname = name = string_table + atoi( ar_hdr.ar_name + 1 );
! while (*endname != '\0' && *endname != '\n')
! endname++;
}
else
{
***************
*** 282,287 ****
--- 283,291 ----
lseek( fd, offset, 0 );
}

+ if (string_table)
+ free(string_table);
+
close( fd );
}

 


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk