report: remove unnecessary null-ptr check
diff --git a/report.c b/report.c
index 57942ec..bc0869d 100644
--- a/report.c
+++ b/report.c
@@ -62,7 +62,7 @@
 }
 
 void report_Report(run_t* run) {
-    if (run->report == NULL || run->report[0] == '\0') {
+    if (run->report[0] == '\0') {
         return;
     }