Merge pull request #48 from alexnask/master

Added missing errdefer
This commit is contained in:
Auguste Rame 2020-05-17 11:26:41 -04:00 committed by GitHub
commit cb4354e494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -316,7 +316,9 @@ pub const AnalysisContext = struct {
// Swap handles and get new tree.
// This takes ownership of the passed uri and text.
self.handle = try newDocument(self.store, try std.mem.dupe(allocator, u8, final_uri), file_contents);
const duped_final_uri = try std.mem.dupe(allocator, u8, final_uri);
errdefer allocator.free(duped_final_uri);
self.handle = try newDocument(self.store, duped_final_uri, file_contents);
}
// Free old tree, add new one if it exists.