SHA256
1
0
forked from pool/libdb-4_8
libdb-4_8/libdb-fix-atomic.patch
David Anes c63b7b4d92 - Security fix: [bsc#1174414, CVE-2019-2708]
* libdb: Data store execution leads to partial DoS
  * Backport the upsteam commits:
    - Fixed several possible crashes when running db_verify
      on a corrupted database. [#27864]
    - Fixed several possible hangs when running db_verify
      on a corrupted database. [#27864]
    - Added a warning message when attempting to verify a queue
      database which has many extent files. Verification will take
      a long time if there are many extent files. [#27864]
  * Add libdb-4_8-CVE-2019-2708.patch

- Security fix: [bsc#1174414, CVE-2019-2708]
  * libdb: Data store execution leads to partial DoS
  * Backport the upsteam commits:
    - Fixed several possible crashes when running db_verify
      on a corrupted database. [#27864]
    - Fixed several possible hangs when running db_verify
      on a corrupted database. [#27864]
    - Added a warning message when attempting to verify a queue
      database which has many extent files. Verification will take
      a long time if there are many extent files. [#27864]
  * Add libdb-4_8-CVE-2019-2708.patch

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libdb-4_8?expand=0&rev=75
2024-08-07 12:49:34 +00:00

23 lines
817 B
Diff

Fix use of reserved identifier __atomic_compare_exchange by renaming
--- dbinc/atomic.h.orig 2018-03-13 09:44:13.197929296 +0100
+++ dbinc/atomic.h 2018-03-13 09:45:09.582831244 +0100
@@ -144,7 +144,7 @@
#define atomic_inc(env, p) __atomic_inc(p)
#define atomic_dec(env, p) __atomic_dec(p)
#define atomic_compare_exchange(env, p, o, n) \
- __atomic_compare_exchange((p), (o), (n))
+ __db_atomic_compare_exchange((p), (o), (n))
static inline int __atomic_inc(db_atomic_t *p)
{
int temp;
@@ -176,7 +176,7 @@
* http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html
* which configure could be changed to use.
*/
-static inline int __atomic_compare_exchange(
+static inline int __db_atomic_compare_exchange(
db_atomic_t *p, atomic_value_t oldval, atomic_value_t newval)
{
atomic_value_t was;