Title: [216942] trunk/Websites/perf.webkit.org
Revision
216942
Author
rn...@webkit.org
Date
2017-05-16 12:36:40 -0700 (Tue, 16 May 2017)

Log Message

Another build fix. Added a missing null check.

* public/v3/components/custom-analysis-task-configurator.js:
(CustomAnalysisTaskConfigurator.prototype._setUploadedFilesIfEmpty):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (216941 => 216942)


--- trunk/Websites/perf.webkit.org/ChangeLog	2017-05-16 19:09:05 UTC (rev 216941)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2017-05-16 19:36:40 UTC (rev 216942)
@@ -1,3 +1,10 @@
+2017-05-16  Ryosuke Niwa  <rn...@webkit.org>
+
+        Another build fix. Added a missing null check.
+
+        * public/v3/components/custom-analysis-task-configurator.js:
+        (CustomAnalysisTaskConfigurator.prototype._setUploadedFilesIfEmpty):
+
 2017-05-14  Ryosuke Niwa  <rn...@webkit.org>
 
         Build fix. Added a missing null check.

Modified: trunk/Websites/perf.webkit.org/public/v3/components/custom-analysis-task-configurator.js (216941 => 216942)


--- trunk/Websites/perf.webkit.org/public/v3/components/custom-analysis-task-configurator.js	2017-05-16 19:09:05 UTC (rev 216941)
+++ trunk/Websites/perf.webkit.org/public/v3/components/custom-analysis-task-configurator.js	2017-05-16 19:36:40 UTC (rev 216942)
@@ -82,7 +82,7 @@
 
     _setUploadedFilesIfEmpty(uploader, commitSet)
     {
-        if (uploader.hasFileToUpload() || uploader.uploadedFiles().length)
+        if (!uploader || uploader.hasFileToUpload() || uploader.uploadedFiles().length)
             return;
         for (const uploadedFile of commitSet.customRoots())
             uploader.addUploadedFile(uploadedFile);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to