mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-03 09:01:52 -05:00
ucm: parser: Fix snprintf usage
There is no need to manually 0 terminate the buffer with snprintf, only strncpy has the very unfortunate behavior of not guaranteeing 0 termination. Likewise there is no need to substract one from the buffer size of the buffer passed to snprintf. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
b3a02322d4
commit
8c4301e7a8
1 changed files with 2 additions and 5 deletions
|
|
@ -71,7 +71,6 @@ static void configuration_filename2(char *fn, size_t fn_len, int format,
|
|||
snprintf(fn, fn_len, "%s/ucm%s/%s/%s%s",
|
||||
snd_config_topdir(), format >= 2 ? "2" : "",
|
||||
dir, file, suffix);
|
||||
fn[fn_len-1] = '\0';
|
||||
}
|
||||
|
||||
static void configuration_filename(snd_use_case_mgr_t *uc_mgr,
|
||||
|
|
@ -96,7 +95,6 @@ static void configuration_filename(snd_use_case_mgr_t *uc_mgr,
|
|||
}
|
||||
if (env) {
|
||||
snprintf(fn, fn_len, "%s/%s/%s%s", env, dir, file, suffix);
|
||||
fn[fn_len-1] = '\0';
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1712,11 +1710,10 @@ int uc_mgr_scan_master_configs(const char **_list[])
|
|||
struct dirent **namelist;
|
||||
|
||||
if (env)
|
||||
snprintf(filename, sizeof(filename)-1, "%s", env);
|
||||
snprintf(filename, sizeof(filename), "%s", env);
|
||||
else
|
||||
snprintf(filename, sizeof(filename)-1, "%s/ucm2",
|
||||
snprintf(filename, sizeof(filename), "%s/ucm2",
|
||||
snd_config_topdir());
|
||||
filename[sizeof(filename)-1] = '\0';
|
||||
|
||||
#if defined(_GNU_SOURCE) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__sun) && !defined(ANDROID)
|
||||
#define SORTFUNC versionsort
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue