Browse Source

fixed mkreiserfs to not core dump on invalid user data

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1088 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
f2c4475833
2 changed files with 16 additions and 0 deletions
  1. +5
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +11
    -0
      package/base/reiserfsprogs/no-coredump.patch

+ 5
- 0
Documentation/Developers/CHANGELOG-RENE

@ -2,6 +2,11 @@
This is not only the CHANGELOG of the desktop target, but also of the
whole rxr-tree.
*) 2003-08-16 (2.0.0-camp - 2.0.0-rc1)
- fixed bug #90 - netcat creates a nc symlink
- fixed mkreiserfs to not core dump on invalid user data
*) 2003-08-15 (2.0.0-camp - 2.0.0-rc1)
- fixed dependencies and priority of cheapskatefonts

+ 11
- 0
package/base/reiserfsprogs/no-coredump.patch

@ -0,0 +1,11 @@
--- reiserfsprogs-3.6.11/lib/misc.c.orig 2003-08-16 11:58:25.000000000 +0200
+++ reiserfsprogs-3.6.11/lib/misc.c 2003-08-16 11:59:32.000000000 +0200
@@ -50,7 +50,7 @@
va_end (args);
fprintf (stderr, "\n%s\n", buf);
- abort ();
+ exit (-1);
}

Loading…
Cancel
Save