OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../irssi/irssi-0.8.10-glibc-invalid-pointer.patch
  5. # Copyright (C) 2006 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. http://www.redhat.com/archives/fedora-extras-commits/2006-March/msg01341.html
  17. This patch fixes a core dump which ocures when one quits irssi
  18. Author "Dams Nade" (anvil)
  19. --- irssi-0.8.10/src/irc/dcc/dcc.c.orig 2005-10-19 05:13:31.000000000 +0300
  20. +++ irssi-0.8.10/src/irc/dcc/dcc.c 2006-12-18 01:32:29.021198000 +0200
  21. @@ -58,8 +58,8 @@
  22. pos = gslist_find_string(dcc_types, type);
  23. if (pos != NULL) {
  24. - dcc_types = g_slist_remove(dcc_types, pos->data);
  25. g_free(pos->data);
  26. + dcc_types = g_slist_remove(dcc_types, pos->data);
  27. }
  28. }