Changeset 2932830b in rtems
- Timestamp:
- Feb 20, 2003, 8:45:32 PM (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9f9ba59
- Parents:
- 64151bf
- Location:
- cpukit/libcsupport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/ChangeLog
r64151bf r2932830b 1 2003-02-20 Wolfram Wadepohl <W.Wadepohl@indumat.de> 2 3 PR 357/rtems_misc 4 * src/termios.c (rtems_termios_open): Fixed code the incorrectly 5 checked that the wrong pointer during allocation was NULL. 6 1 7 2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/libcsupport/src/termios.c
r64151bf r2932830b 184 184 tty->rawOutBuf.Size = RAW_OUTPUT_BUFFER_SIZE; 185 185 tty->rawOutBuf.theBuf = malloc (tty->rawOutBuf.Size); 186 if (tty->raw InBuf.theBuf == NULL) {186 if (tty->rawOutBuf.theBuf == NULL) { 187 187 free((void *)(tty->rawInBuf.theBuf)); 188 188 free(tty);
Note: See TracChangeset
for help on using the changeset viewer.