summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ldso/ldso/boot1.c2
-rw-r--r--ldso/ldso/ldso.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/boot1.c b/ldso/ldso/boot1.c
index 4a3dbcea8..038a68dbb 100644
--- a/ldso/ldso/boot1.c
+++ b/ldso/ldso/boot1.c
@@ -672,7 +672,7 @@ found_got:
struct stat st;
char *preload;
- if (!_dl_stat(LDSO_PRELOAD, &st)) {
+ if (!_dl_stat(LDSO_PRELOAD, &st) && st.st_size > 0) {
if ((fd = _dl_open(LDSO_PRELOAD, O_RDONLY)) < 0) {
_dl_fprintf(2, "%s: can't open file '%s'\n",
_dl_progname, LDSO_PRELOAD);
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c
index 4a3dbcea8..038a68dbb 100644
--- a/ldso/ldso/ldso.c
+++ b/ldso/ldso/ldso.c
@@ -672,7 +672,7 @@ found_got:
struct stat st;
char *preload;
- if (!_dl_stat(LDSO_PRELOAD, &st)) {
+ if (!_dl_stat(LDSO_PRELOAD, &st) && st.st_size > 0) {
if ((fd = _dl_open(LDSO_PRELOAD, O_RDONLY)) < 0) {
_dl_fprintf(2, "%s: can't open file '%s'\n",
_dl_progname, LDSO_PRELOAD);