Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:16.0:Staging:adi:20
libva-vdpau-driver
libva-vdpau-driver-0.7.4-sigfpe-crash.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File libva-vdpau-driver-0.7.4-sigfpe-crash.patch of Package libva-vdpau-driver
Description: Fix a crash if a heap is destroyed before being initialized Author: Sebastian Ramacher <sramacher@debian.org> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=58836 Bug-Debian: http://bugs.debian.org/748294 Last-Update: 2014-06-02 --- vdpau-video-0.7.4.orig/src/object_heap.c +++ vdpau-video-0.7.4/src/object_heap.c @@ -272,8 +272,10 @@ object_heap_destroy(object_heap_p heap) ASSERT(obj->next_free != ALLOCATED); } - for (i = 0; i < heap->heap_size / heap->heap_increment; i++) { - free(heap->bucket[i]); + if (heap->bucket) { + for (i = 0; i < heap->heap_size / heap->heap_increment; i++) { + free(heap->bucket[i]); + } } pthread_mutex_destroy(&heap->mutex);
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor