diff options
| author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2015-11-18 11:48:41 +0000 |
|---|---|---|
| committer | Juan Quintela <quintela@redhat.com> | 2015-11-19 11:49:53 +0100 |
| commit | 5df5416e639cd75bd85d243af41387c2418fa580 (patch) | |
| tree | bb45896d8dc18840572f5f3456d3a4dedc6be594 /migration/migration.c | |
| parent | 95a7788b2faa81ff95675f1e46a3272a612b35de (diff) | |
| download | focaccia-qemu-5df5416e639cd75bd85d243af41387c2418fa580.tar.gz focaccia-qemu-5df5416e639cd75bd85d243af41387c2418fa580.zip | |
Unneeded NULL check
The check is unneccesary, we read the value at the start of the thread, use it, and never change it. The value is checked to be non-NULL before thread creation. Spotted by coverity, CID 1339211 Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'migration/migration.c')
| -rw-r--r-- | migration/migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/migration.c b/migration/migration.c index 265d13a74f..1a42aee412 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1345,7 +1345,7 @@ static void *source_return_path_thread(void *opaque) break; } } - if (rp && qemu_file_get_error(rp)) { + if (qemu_file_get_error(rp)) { trace_source_return_path_thread_bad_end(); mark_source_rp_bad(ms); } |