diff options
Diffstat (limited to 'libdrm')
| -rw-r--r-- | libdrm/xf86drm.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/libdrm/xf86drm.c b/libdrm/xf86drm.c index 1a8edeef..862772d5 100644 --- a/libdrm/xf86drm.c +++ b/libdrm/xf86drm.c @@ -2271,8 +2271,9 @@ int drmFenceCreate(int fd, unsigned flags, int class, unsigned type,  		   drmFence *fence)  {      drm_fence_arg_t arg; -     +      memset(&arg, 0, sizeof(arg)); +    arg.flags = flags;      arg.type = type;      arg.class = class;      arg.op = drm_fence_create; | 
