aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2018-06-14 11:35:22 +0100
committerPeter Maydell <peter.maydell@linaro.org>2018-06-14 11:35:22 +0100
commit945741da77d6d98e9323851787f258072bcb4c4a (patch)
tree1ff919e59f19d9b891527cb7ced0cf3d1d48b61e /scripts
parent3b2a4d3901b8b45840c0e0495ee1cbd13123739d (diff)
parent719a30776b94d3da8c613e5047414f483d40256d (diff)
downloadqemu-945741da77d6d98e9323851787f258072bcb4c4a.zip
qemu-945741da77d6d98e9323851787f258072bcb4c4a.tar.gz
qemu-945741da77d6d98e9323851787f258072bcb4c4a.tar.bz2
Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2018-06-13' into staging
Miscellaneous patches for 2018-06-13 # gpg: Signature made Wed 13 Jun 2018 13:51:51 BST # gpg: using RSA key 3870B400EB918653 # gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" # gpg: aka "Markus Armbruster <armbru@pond.sub.org>" # Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867 4E5F 3870 B400 EB91 8653 * remotes/armbru/tags/pull-misc-2018-06-13: Purge uses of banned g_assert_FOO() coverity-model: replay data is considered trusted Revert "Makefile: add target to print generated files" Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/coverity-model.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/coverity-model.c b/scripts/coverity-model.c
index c702804..48b1123 100644
--- a/scripts/coverity-model.c
+++ b/scripts/coverity-model.c
@@ -103,6 +103,18 @@ static int get_keysym(const name2keysym_t *table,
}
}
+/* Replay data is considered trusted. */
+uint8_t replay_get_byte(void)
+{
+ uint8_t byte = 0;
+ if (replay_file) {
+ uint8_t c;
+ byte = c;
+ }
+ return byte;
+}
+
+
/*
* GLib memory allocation functions.
*