Changeset 26342 in vbox for trunk/src/bldprogs
- Timestamp:
- Feb 9, 2010 3:15:19 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57430
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/scm.cpp
r26339 r26342 700 700 int ScmStreamSeekByLine(PSCMSTREAM pStream, size_t iLine) 701 701 { 702 AssertReturn(!pStream->fWriteOrRead, NULL);702 AssertReturn(!pStream->fWriteOrRead, VERR_ACCESS_DENIED); 703 703 if (RT_FAILURE(pStream->rc)) 704 704 return pStream->rc; … … 931 931 int rc = scmStreamGrowLines(pStream, iLine); 932 932 if (RT_FAILURE(rc)) 933 return NULL;933 return rc; 934 934 } 935 935 … … 1022 1022 pStream->paLines[iLine].cch = off - pStream->paLines[iLine].off; 1023 1023 pStream->paLines[iLine].enmEol = SCMEOL_NONE; 1024 return NULL;1024 return rc; 1025 1025 } 1026 1026 }
Note:
See TracChangeset
for help on using the changeset viewer.