diff options
author | Alexander Bulekov | 2020-05-12 05:01:30 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2020-06-05 10:54:48 +0200 |
commit | 7a071a96d3ef48095892c1d1075c0181c8940058 (patch) | |
tree | fa65a01c0d7025d610749f54e6102e6c6ef664de /softmmu | |
parent | io_uring: use io_uring_cq_ready() to check for ready cqes (diff) | |
download | qemu-7a071a96d3ef48095892c1d1075c0181c8940058.tar.gz qemu-7a071a96d3ef48095892c1d1075c0181c8940058.tar.xz qemu-7a071a96d3ef48095892c1d1075c0181c8940058.zip |
fuzz: add datadir for oss-fuzz compatability
This allows us to keep pc-bios in executable_dir/pc-bios, rather than
executable_dir/../pc-bios, which is incompatible with oss-fuzz' file
structure.
Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
Message-id: 20200512030133.29896-2-alxndr@bu.edu
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r-- | softmmu/vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/vl.c b/softmmu/vl.c index ae5451bc23..05d1a4cb6b 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -1993,7 +1993,7 @@ char *qemu_find_file(int type, const char *name) return NULL; } -static void qemu_add_data_dir(const char *path) +void qemu_add_data_dir(const char *path) { int i; |