New upstream release 0.9.19
This commit is contained in:
parent
7d6ae1cdf9
commit
7930335210
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@ tevent-0.9.8.tar.gz
|
||||
/tevent-0.9.16.tar.gz
|
||||
/tevent-0.9.17.tar.gz
|
||||
/tevent-0.9.18.tar.gz
|
||||
/tevent-0.9.19.tar.gz
|
||||
|
||||
@ -1,26 +0,0 @@
|
||||
From dd0e38b5feb51c8aa44e76bb6c84202bf8373005 Mon Sep 17 00:00:00 2001
|
||||
From: Volker Lendecke <vl@samba.org>
|
||||
Date: Thu, 13 Jun 2013 20:35:32 +0200
|
||||
Subject: [PATCH] tevent: Fix Coverity ID 989236 Operands don't affect result
|
||||
|
||||
"unsigned" could be less than uint64_t, so idx==UINT64_MAX is always false.
|
||||
|
||||
Signed-off-by: Volker Lendecke <vl@samba.org>
|
||||
Reviewed-by: Jeremy Allison <jra@samba.org>
|
||||
|
||||
diff --git a/lib/tevent/tevent_poll.c b/lib/tevent/tevent_poll.c
|
||||
index c6e2a00ffec6393fd6fccc1a3836f63e4ef4e045..75d0ced5a09ea86505a5df49b3c84073d3aa0f02 100644
|
||||
--- a/lib/tevent/tevent_poll.c
|
||||
+++ b/lib/tevent/tevent_poll.c
|
||||
@@ -546,7 +546,7 @@ static int poll_event_loop_poll(struct tevent_context *ev,
|
||||
the handler to remove itself when called */
|
||||
|
||||
for (fde = ev->fd_events; fde; fde = fde->next) {
|
||||
- unsigned idx = fde->additional_flags;
|
||||
+ uint64_t idx = fde->additional_flags;
|
||||
struct pollfd *pfd;
|
||||
uint16_t flags = 0;
|
||||
|
||||
--
|
||||
1.8.2.1
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
Name: libtevent
|
||||
Version: 0.9.18
|
||||
Release: 3%{?dist}
|
||||
Version: 0.9.19
|
||||
Release: 1%{?dist}
|
||||
Group: System Environment/Daemons
|
||||
Summary: The tevent library
|
||||
License: LGPLv3+
|
||||
@ -17,9 +17,6 @@ BuildRequires: libxslt
|
||||
|
||||
Provides: bundled(libreplace)
|
||||
|
||||
# Patches
|
||||
Patch0001: 0001-tevent-Fix-Coverity-ID-989236-Operands-don-t-affect-.patch
|
||||
|
||||
%description
|
||||
Tevent is an event system based on the talloc memory management library.
|
||||
Tevent has support for many event types, including timers, signals, and
|
||||
@ -115,6 +112,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%changelog
|
||||
* Fri Aug 02 2013 Jakub Hrozek <jhrozek@redhat.com> - 0.9.19-1
|
||||
- New upstream release 0.9.19
|
||||
- Drop upstreamed patch
|
||||
|
||||
* Mon Jul 01 2013 Stephen Gallagher <sgallagh@redhat.com> - 0.9.18-3
|
||||
- Make the dependency requirements arch-specific
|
||||
- Remove ancient, unused patches
|
||||
|
||||
Loading…
Reference in New Issue
Block a user