Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 919027a

Browse files
author
Denghui Dong
committedApr 14, 2020
8242485: Null _file checking in fileStream::flush()
Reviewed-by: dholmes, ysuenaga, iklam
1 parent 23709c8 commit 919027a

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed
 

‎src/hotspot/share/utilities/ostream.cpp

+11-6
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,8 @@ void fileStream::write(const char* s, size_t len) {
533533
if (_file != NULL) {
534534
// Make an unused local variable to avoid warning from gcc compiler.
535535
size_t count = fwrite(s, 1, len, _file);
536+
update_position(s, len);
536537
}
537-
update_position(s, len);
538538
}
539539

540540
long fileStream::fileSize() {
@@ -551,9 +551,12 @@ long fileStream::fileSize() {
551551
}
552552

553553
char* fileStream::readln(char *data, int count ) {
554-
char * ret = ::fgets(data, count, _file);
555-
//Get rid of annoying \n char
556-
data[::strlen(data)-1] = '\0';
554+
char * ret = NULL;
555+
if (_file != NULL) {
556+
ret = ::fgets(data, count, _file);
557+
//Get rid of annoying \n char
558+
data[::strlen(data)-1] = '\0';
559+
}
557560
return ret;
558561
}
559562

@@ -565,15 +568,17 @@ fileStream::~fileStream() {
565568
}
566569

567570
void fileStream::flush() {
568-
fflush(_file);
571+
if (_file != NULL) {
572+
fflush(_file);
573+
}
569574
}
570575

571576
void fdStream::write(const char* s, size_t len) {
572577
if (_fd != -1) {
573578
// Make an unused local variable to avoid warning from gcc compiler.
574579
size_t count = ::write(_fd, s, (int)len);
580+
update_position(s, len);
575581
}
576-
update_position(s, len);
577582
}
578583

579584
defaultStream* defaultStream::instance = NULL;

‎src/hotspot/share/utilities/ostream.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,11 +230,11 @@ class fileStream : public outputStream {
230230
~fileStream();
231231
bool is_open() const { return _file != NULL; }
232232
virtual void write(const char* c, size_t len);
233-
size_t read(void *data, size_t size, size_t count) { return ::fread(data, size, count, _file); }
233+
size_t read(void *data, size_t size, size_t count) { return _file != NULL ? ::fread(data, size, count, _file) : 0; }
234234
char* readln(char *data, int count);
235-
int eof() { return feof(_file); }
235+
int eof() { return _file != NULL ? feof(_file) : -1; }
236236
long fileSize();
237-
void rewind() { ::rewind(_file); }
237+
void rewind() { if (_file != NULL) ::rewind(_file); }
238238
void flush();
239239
};
240240

0 commit comments

Comments
 (0)
This repository has been archived.