[PATCH] fix file handle leak in udev_queue_get_seqnum_sequence_is_finished()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

as usual ...

Florian

diff --git a/libudev/libudev-queue.c b/libudev/libudev-queue.c
index 68efba0..f06c9e8 100644
--- a/libudev/libudev-queue.c
+++ b/libudev/libudev-queue.c
@@ -360,10 +360,14 @@ int udev_queue_get_seqnum_sequence_is_finished(struct udev_queue *udev_queue,
 		return 1;
 	if (start < seqnum)
 		start = seqnum;
-	if (start > end)
+	if (start > end) {
+		fclose(queue_file);
 		return 1;
-	if (end - start > INT_MAX - 1)
+	}
+	if (end - start > INT_MAX - 1) {
+		fclose(queue_file);
 		return -EOVERFLOW;
+	}
 	unfinished = (end - start) + 1;
 
 	while (unfinished > 0) {
--
To unsubscribe from this list: send the line "unsubscribe linux-hotplug" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel]     [Linux DVB]     [Asterisk Internet PBX]     [DCCP]     [Netdev]     [X.org]     [Util Linux NG]     [Fedora Women]     [ALSA Devel]     [Linux USB]

  Powered by Linux