Skip to content

access: use strtok_r() in srt_url_parse_query()

Fatih Uzunoğlu requested to merge fuzun/vlc:access/strtokr into master

I have spotted this using static analysis a while ago. It seems this is the only place strtok() is used in the codebase. Changed it to use strtok_r() in order to make it re-entrant.

Merge request reports