Skip to content

Add missing bounds checks in LSIF parser

Jacob Vosmaer requested to merge jv-add-missing-bounds-checks into master

I noticed a couple of spots in the LSIF parser where we write slice[0] without checking whether len(slice) > 0. This MR fixes that.

Merge request reports