diff options
Diffstat (limited to 'src/audioOutputs/audioOutput_ao.c')
-rw-r--r-- | src/audioOutputs/audioOutput_ao.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audioOutputs/audioOutput_ao.c b/src/audioOutputs/audioOutput_ao.c index e94a6e6b7..bf4b99a34 100644 --- a/src/audioOutputs/audioOutput_ao.c +++ b/src/audioOutputs/audioOutput_ao.c @@ -40,7 +40,7 @@ typedef struct _AoData { static AoData *newAoData(void) { - AoData *ret = malloc(sizeof(AoData)); + AoData *ret = xmalloc(sizeof(AoData)); ret->device = NULL; ret->options = NULL; @@ -112,9 +112,9 @@ static int audioOutputAo_initDriver(AudioOutput * audioOutput, blockParam = getBlockParam(param, "options"); if (blockParam) { - dup = strdup(blockParam->value); + dup = xstrdup(blockParam->value); } else - dup = strdup(""); + dup = xstrdup(""); if (strlen(dup)) { stk1 = NULL; |