On Wed, 23 Sep 2015 09:48:50 +0200, han.lu at intel.com wrote: > > +#define TEMP_RECORD_FILE_NAME "/tmp/bat.wav" Using a fixed temporary file path on /tmp is bad in security. You'd need to create a temp file dynamically, or use only the passed file name by user. Takashi