Remove invalid assert() in tracked_fds_find().

This commit is contained in:
Simon Ruderich
2013-06-20 23:17:03 +02:00
parent f3c734eb7d
commit ba2283bd37
2 changed files with 7 additions and 1 deletions

View File

@@ -57,6 +57,7 @@ int main(int argc, char **argv unused) {
putc_unlocked('\n', stdout);
/* Test invalid stuff. */
write(-3, "foo", 3);
close(-42);
close(-4711);
/* Can't test this, results in a segfault with the "normal" fclose(). */