File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 33## Version 0.27.0-insiders2: March 4, 2019
44### Bug Fixes
55* Fix the ` Open File... ` scenario (without a workspace folder). [ #5049 ] ( https://github.com/microsoft/vscode-cpptools/issues/5049 )
6+ * Fix ` browsePath ` null reference that can occur with some configuration providers. [ PR #5055 ] ( https://github.com/microsoft/vscode-cpptools/pull/5055 )
67
78## Version 0.27.0-insiders: March 3, 2019
89### Enhancements
Original file line number Diff line number Diff line change @@ -1456,6 +1456,9 @@ export class DefaultClient implements Client {
14561456 // Resume parsing on either resolve or reject, only if parsing was not resumed due to timeout
14571457 let hasCompleted : boolean = false ;
14581458 task ( ) . then ( async config => {
1459+ if ( ! config ) {
1460+ return ;
1461+ }
14591462 // TODO: This is a hack to get around CMake Tools bug: https://github.com/microsoft/vscode-cmake-tools/issues/1073
14601463 let foundMatch : boolean = false ;
14611464 for ( let c of config . browsePath ) {
You can’t perform that action at this time.
0 commit comments