Skip to content

Commit 447b842

Browse files
committed
Mark an unresolved memory leak
1 parent d27ba81 commit 447b842

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/app.jai

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ add_directory :: (directory_path : string) -> *app.Folder {
203203
fully_exists, how_much_exists := how_much_of_path_exists_on_the_local_filesystem(path);
204204
if fully_exists {
205205
// Update the list of watched directories so that we can reload this entity
206-
add_directories(*app.file_watcher, folder.path);
206+
add_directories(*app.file_watcher, folder.path); // @Leak
207207
}
208208

209209
result = *app.directories[app.directories.count - 1];

0 commit comments

Comments
 (0)