Skip to content

Commit

Permalink
Avoid a NRE when alternate type info is not used.
Browse files Browse the repository at this point in the history
  • Loading branch information
bclothier committed Aug 2, 2019
1 parent 110a79b commit 42e8747
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -228,7 +228,7 @@ public void Dispose()
(_container as IDisposable)?.Dispose();

_typeInfoPointer.Dispose();
_typeInfoAlternatePointer.Dispose();
_typeInfoAlternatePointer?.Dispose();
}

TypeInfoVBEExtensions _vbeExtensions;
Expand Down

0 comments on commit 42e8747

Please sign in to comment.