From 3a0480a4826ae21f50883570c21cef4b8fea4a52 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Tue, 15 Jan 2019 16:52:40 +0100 Subject: [PATCH] Add missing include of stdlib.h. Closes https://github.com/MusicPlayerDaemon/MPD/issues/456 --- src/db/VHelper.cxx | 1 + src/decoder/plugins/AudiofileDecoderPlugin.cxx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/db/VHelper.cxx b/src/db/VHelper.cxx index de55c9a1d..210e1e5d8 100644 --- a/src/db/VHelper.cxx +++ b/src/db/VHelper.cxx @@ -23,6 +23,7 @@ #include "song/Filter.hxx" #include +#include #include DatabaseVisitorHelper::DatabaseVisitorHelper(const DatabaseSelection &_selection, diff --git a/src/decoder/plugins/AudiofileDecoderPlugin.cxx b/src/decoder/plugins/AudiofileDecoderPlugin.cxx index 0a86162c8..8ebc68ca4 100644 --- a/src/decoder/plugins/AudiofileDecoderPlugin.cxx +++ b/src/decoder/plugins/AudiofileDecoderPlugin.cxx @@ -33,6 +33,7 @@ #include #include +#include static constexpr Domain audiofile_domain("audiofile");