From: mornfall@sourceware.org
To: dm-cvs@sourceware.org, dm-devel@redhat.com
Subject: device-mapper ./WHATS_NEW dmeventd/libdevmappe ...
Date: 27 Nov 2007 12:26:07 -0000 [thread overview]
Message-ID: <20071127122607.10574.qmail@sourceware.org> (raw)
CVSROOT: /cvs/dm
Module name: device-mapper
Changes by: mornfall@sourceware.org 2007-11-27 12:26:06
Modified files:
. : WHATS_NEW
dmeventd : libdevmapper-event.c
Log message:
Fix a possible double-free in libdevmapper-event.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/device-mapper/WHATS_NEW.diff?cvsroot=dm&r1=1.209&r2=1.210
http://sourceware.org/cgi-bin/cvsweb.cgi/device-mapper/dmeventd/libdevmapper-event.c.diff?cvsroot=dm&r1=1.25&r2=1.26
--- device-mapper/WHATS_NEW 2007/11/12 20:47:17 1.209
+++ device-mapper/WHATS_NEW 2007/11/27 12:26:06 1.210
@@ -1,5 +1,6 @@
Version 1.02.23 -
==================================
+ Fix possible double-free in libdevmapper-event.
Define DM_READ_AHEAD_* values and flags.
Fix configure --with-dmeventd-path substitution.
Allow $DM_DEV_DIR envvar to override default of "/dev".
--- device-mapper/dmeventd/libdevmapper-event.c 2007/08/21 16:26:06 1.25
+++ device-mapper/dmeventd/libdevmapper-event.c 2007/11/27 12:26:06 1.26
@@ -722,10 +722,15 @@
dm_event_handler_set_dso(dmevh, reply_dso);
dm_event_handler_set_event_mask(dmevh, reply_mask);
- if (reply_dso)
+ if (reply_dso) {
dm_free(reply_dso);
- if (reply_uuid)
+ reply_dso = NULL;
+ }
+
+ if (reply_uuid) {
dm_free(reply_uuid);
+ reply_uuid = NULL;
+ }
dmevh->dev_name = dm_strdup(dm_task_get_name(dmt));
if (!dmevh->dev_name) {
next reply other threads:[~2007-11-27 12:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-27 12:26 mornfall [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-08-02 22:31 device-mapper ./WHATS_NEW dmeventd/libdevmappe mornfall
2007-04-19 19:10 mbroz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071127122607.10574.qmail@sourceware.org \
--to=mornfall@sourceware.org \
--cc=dm-cvs@sourceware.org \
--cc=dm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.