Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Unified Diff: runtime/bin/vmservice/loader.dart

Issue 2815433002: Fix logic bug in loader code (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/loader.dart
diff --git a/runtime/bin/vmservice/loader.dart b/runtime/bin/vmservice/loader.dart
index 955e09b26e8d37c3979ba1b55d1f7cc4f1db985b..87903850121a94738f6b78fd99b38cd4f9b7c1d8 100644
--- a/runtime/bin/vmservice/loader.dart
+++ b/runtime/bin/vmservice/loader.dart
@@ -90,7 +90,7 @@ class IsolateLoaderState extends IsolateEmbedderData {
if (packagesConfigFlag != null) {
_setPackagesConfig(packagesConfigFlag);
}
- if (_fileRequestQueue != null) {
+ if (_fileRequestQueue == null) {
_fileRequestQueue = new List<FileRequest>();
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698