summaryrefslogtreecommitdiff
path: root/libwebrtc-screen-cast-sync.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-04-15 17:08:18 -0400
committerB. Stack <bgstack15@gmail.com>2022-04-15 17:08:18 -0400
commit251329f0d04bccf2c49f3032b1f62c7da589fe27 (patch)
tree9bed5d62e44cecc08a59620f7ba2ceba4919d768 /libwebrtc-screen-cast-sync.patch
parentlibrewolf for fedora 99.0.1-1 rc1 (diff)
downloadlibrewolf-fedora-ff-251329f0d04bccf2c49f3032b1f62c7da589fe27.tar.gz
librewolf-fedora-ff-251329f0d04bccf2c49f3032b1f62c7da589fe27.tar.bz2
librewolf-fedora-ff-251329f0d04bccf2c49f3032b1f62c7da589fe27.zip
fix placement of ubo xpi
Diffstat (limited to 'libwebrtc-screen-cast-sync.patch')
-rw-r--r--libwebrtc-screen-cast-sync.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/libwebrtc-screen-cast-sync.patch b/libwebrtc-screen-cast-sync.patch
index da909ee..09bfd0f 100644
--- a/libwebrtc-screen-cast-sync.patch
+++ b/libwebrtc-screen-cast-sync.patch
@@ -9344,7 +9344,7 @@ index 0000000..c6ba661
+ const struct spa_meta_cursor* cursor =
+ static_cast<struct spa_meta_cursor*>(spa_buffer_find_meta_data(
+ spa_buffer, SPA_META_Cursor, sizeof(*cursor)));
-+ if (spa_meta_cursor_is_valid(cursor)) {
++ if (cursor && spa_meta_cursor_is_valid(cursor)) {
+ struct spa_meta_bitmap* bitmap = nullptr;
+
+ if (cursor->bitmap_offset)
bgstack15