aboutsummaryrefslogtreecommitdiff
path: root/core/path/filepath/path.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-06-03 10:05:05 +0100
committergingerBill <bill@gingerbill.org>2021-06-03 10:05:05 +0100
commitb9888f8f68214734620ec1bd607d19c7c7419198 (patch)
tree673efacea17d0065505266dfb748f97433cc868a /core/path/filepath/path.odin
parent32cda5d56a02da260509dd0cc0c7e4eac2cd2e46 (diff)
Fix linalg.transpose
Diffstat (limited to 'core/path/filepath/path.odin')
-rw-r--r--core/path/filepath/path.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/path/filepath/path.odin b/core/path/filepath/path.odin
index 96f7cb7d0..33ea5541c 100644
--- a/core/path/filepath/path.odin
+++ b/core/path/filepath/path.odin
@@ -399,6 +399,5 @@ lazy_buffer_string :: proc(lb: ^Lazy_Buffer) -> string {
@(private)
lazy_buffer_destroy :: proc(lb: ^Lazy_Buffer) {
delete(lb.b);
- free(lb);
lb^ = {};
}