summaryrefslogtreecommitdiffstats
path: root/libhb/encx264.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2012-12-20 18:32:01 +0000
committerRodeo <[email protected]>2012-12-20 18:32:01 +0000
commit7418e231602b999c899070799f591f814bcdcc8a (patch)
tree1f9d2ad1466687c2dab9e34f37105dbf02aa5593 /libhb/encx264.c
parenta245d2a3945c53ebfc461776f8219d41f4f6ac12 (diff)
hb_x264_param_unparse: cosmetics.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5103 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r--libhb/encx264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c
index 9e29ec334..74a4adda2 100644
--- a/libhb/encx264.c
+++ b/libhb/encx264.c
@@ -970,7 +970,7 @@ char * hb_x264_param_unparse(const char *x264_preset, const char *x264_tune,
/*
* apply the additional x264 options
*/
- while ((entry = hb_dict_next(x264_opts, entry)))
+ while ((entry = hb_dict_next(x264_opts, entry)) != NULL)
{
// let's not pollute GUI logs with x264_param_parse return codes
x264_param_parse(&param, entry->key, entry->value);