[vlc-devel] [PATCH 3/3] freetype: Simplify path check
Marvin Scholz
epirat07 at gmail.com
Sat Jun 17 17:08:31 CEST 2017
---
modules/text_renderer/freetype/fonts/darwin.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/modules/text_renderer/freetype/fonts/darwin.c b/modules/text_renderer/freetype/fonts/darwin.c
index 06dec792da..a3ea832954 100644
--- a/modules/text_renderer/freetype/fonts/darwin.c
+++ b/modules/text_renderer/freetype/fonts/darwin.c
@@ -172,12 +172,8 @@ const vlc_family_t *CoreText_GetFamily(filter_t *p_filter, const char *psz_famil
path = getPathForFontDescription(iter);
/* check if the path is empty, which can happen in rare circumstances */
- if (path != NULL) {
- if (strcmp("", path) == 0) {
- FREENULL(path);
- continue;
- }
- } else {
+ if (path == NULL || *path == '\0') {
+ FREENULL(path);
continue;
}
--
2.11.0 (Apple Git-81)
More information about the vlc-devel
mailing list