Home
last modified time | relevance | path

Searched refs:nRawProps (Results 1 – 1 of 1) sorted by relevance

/dports/devel/fossil/fossil-src-2.17/src/
H A Dimport.c942 int nRawProps = 0; in svn_read_props() local
951 nRawProps = atoi(zLen); in svn_read_props()
953 if( nRawProps ){ in svn_read_props()
956 rec->pRawProps = pRawProps = fossil_malloc( nRawProps ); in svn_read_props()
957 got = fread(rec->pRawProps, 1, nRawProps, pIn); in svn_read_props()
958 if( got!=nRawProps ){ in svn_read_props()
959 fossil_fatal("short read: got %d of %d bytes", got, nRawProps); in svn_read_props()
965 while( zLine<(pRawProps+nRawProps-10) ){ in svn_read_props()