1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: fix a use-after-free causing a segmentation fault with glibc 2.32
Author: Aurelien Jarno <aurel32@debian.org>
Forwarded: https://github.com/thegenemyers/DAZZ_DB/issues/41
Last-Update: 2021-09-14
--- dazzdb-1.0+git20201103.8d98c37.orig/DBstats.c
+++ dazzdb-1.0+git20201103.8d98c37/DBstats.c
@@ -346,8 +346,6 @@ int main(int argc, char *argv[])
}
}
printf("\n");
-
- Close_Track(db,track);
}
}
|