From b9baffd9af9383cc886b1583814fe15163017d80 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 10 Sep 2022 04:41:31 +0100 Subject: gentoo auto-resync : 10:09:2022 - 04:41:30 --- ...ptor-2.0.15-clang-pointer-integer-warning.patch | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 media-libs/raptor/files/raptor-2.0.15-clang-pointer-integer-warning.patch (limited to 'media-libs/raptor/files') diff --git a/media-libs/raptor/files/raptor-2.0.15-clang-pointer-integer-warning.patch b/media-libs/raptor/files/raptor-2.0.15-clang-pointer-integer-warning.patch new file mode 100644 index 000000000000..badb450456e4 --- /dev/null +++ b/media-libs/raptor/files/raptor-2.0.15-clang-pointer-integer-warning.patch @@ -0,0 +1,44 @@ +https://bugs.gentoo.org/869380 +https://github.com/dajobe/raptor/commit/567d4d1ab639d924e8d5af459476f331b9af0ce5 + +From: Dave Beckett +Date: Tue, 4 Nov 2014 15:25:20 -0800 +Subject: [PATCH] Fix error returns in new world methods + +(raptor_world_get_parser_factory, +raptor_world_get_serializers_count): Fix return value in assertions +--- a/src/raptor_parse.c ++++ b/src/raptor_parse.c +@@ -252,12 +252,12 @@ raptor_world_get_parser_factory(raptor_world *world, const char *name) + * + * Get number of parsers + * +- * Return value: number of parsers ++ * Return value: number of parsers or <0 on failure + **/ + int + raptor_world_get_parsers_count(raptor_world* world) + { +- RAPTOR_ASSERT_OBJECT_POINTER_RETURN_VALUE(world, raptor_world, NULL); ++ RAPTOR_ASSERT_OBJECT_POINTER_RETURN_VALUE(world, raptor_world, -1); + + raptor_world_open(world); + +--- a/src/raptor_serialize.c ++++ b/src/raptor_serialize.c +@@ -235,12 +235,12 @@ raptor_get_serializer_factory(raptor_world* world, const char *name) + * + * Get number of serializers + * +- * Return value: number of serializers ++ * Return value: number of serializers or <0 on failure + **/ + int + raptor_world_get_serializers_count(raptor_world* world) + { +- RAPTOR_ASSERT_OBJECT_POINTER_RETURN_VALUE(world, raptor_world, NULL); ++ RAPTOR_ASSERT_OBJECT_POINTER_RETURN_VALUE(world, raptor_world, -1); + + raptor_world_open(world); + + -- cgit v1.2.3