Codebase list alsa-lib / f44c94f
conf: accept '_' character in the variable name Fixes: https://github.com/alsa-project/alsa-lib/issues/197 Signed-off-by: Jaroslav Kysela <perex@perex.cz> Jaroslav Kysela 2 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
189189 } else {
190190 e = s + 1;
191191 while (*e) {
192 if (!isalnum(*e))
192 if (!isalnum(*e) && *e != '_')
193193 break;
194194 e++;
195195 }