Commit f5c8f5da authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Archive: fix typo

parent 75b2a6d7
...@@ -314,7 +314,7 @@ int AccessOpen(vlc_object_t *p_object) ...@@ -314,7 +314,7 @@ int AccessOpen(vlc_object_t *p_object)
char *psz_base = strdup(p_access->psz_location); char *psz_base = strdup(p_access->psz_location);
if (unlikely(psz_base == NULL)) if (unlikely(psz_base == NULL))
return VLC_EENOMEM; return VLC_ENOMEM;
const char *psz_name = psz_base + (sep - p_access->psz_location); const char *psz_name = psz_base + (sep - p_access->psz_location);
*(psz_name++) = '\0'; *(psz_name++) = '\0';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment