Changeset 124800a in rtems
- Timestamp:
- Apr 25, 2010, 7:50:05 PM (11 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 85e0a22
- Parents:
- 2cc30e90
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r2cc30e90 r124800a 1 2010-04-25 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * libcsupport/src/readv.c: Check for < 0 on iov_len, not <= 0. A 4 readv() with all iov_len equal to 0 should have no effect. 5 1 6 2010-04-14 Ralf Corsépius <ralf.corsepius@rtems.org> 2 7 -
cpukit/libcsupport/src/readv.c
r2cc30e90 r124800a 75 75 rtems_set_errno_and_return_minus_one( EINVAL ); 76 76 77 if ( iov[v].iov_len < =0 )77 if ( iov[v].iov_len < 0 ) 78 78 rtems_set_errno_and_return_minus_one( EINVAL ); 79 79
Note: See TracChangeset
for help on using the changeset viewer.