diff options
author | Damiano Galassi <[email protected]> | 2020-06-27 14:07:59 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2020-06-27 14:07:59 +0200 |
commit | 1541c6b4aab334be0f640ced71ab0d1ddbaf48fa (patch) | |
tree | 3738af09ecf2aebf78b412fceb06f7bdb258aeec /libhb | |
parent | 2981513414b7070a75c04ee12cc05c5a7614b550 (diff) |
libhb: fix a possible unitialized variable access.
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/decssasub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decssasub.c b/libhb/decssasub.c index 85bda495b..5411852f8 100644 --- a/libhb/decssasub.c +++ b/libhb/decssasub.c @@ -68,7 +68,7 @@ static int extradataInit( hb_work_private_t * pv ) static int decssaInit( hb_work_object_t * w, hb_job_t * job ) { - hb_work_private_t * pv; + hb_work_private_t * pv = NULL; int ii; if (w->subtitle->config.src_filename == NULL) |