summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/ldd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ldd.c b/utils/ldd.c
index 51451809c..a857127a8 100644
--- a/utils/ldd.c
+++ b/utils/ldd.c
@@ -727,7 +727,7 @@ foo:
NULL
};
- if ((pid = fork()) == 0) {
+ if ((pid = vfork()) == 0) {
/* Cool, it looks like we should be able to actually
* run this puppy. Do so now... */
execle(filename, filename, NULL, environment);