diff options
Diffstat (limited to 'src/kernel/handle.c')
-rw-r--r-- | src/kernel/handle.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/kernel/handle.c b/src/kernel/handle.c index ed7896d..3e31a12 100644 --- a/src/kernel/handle.c +++ b/src/kernel/handle.c @@ -39,8 +39,6 @@ void handle_close(struct handle *h) { // TODO sanity check to check if refcount is true. handle_sanity? - // TODO tests which would catch premature frees - // by that i mean duplicating a handle and killing the original process h->type = HANDLE_INVALID; kfree(h); } |