Mercurial > audlegacy-plugins
view src/modplug/archive/arch_raw.cxx @ 3150:062f42c3737e
Fix possible crash in scrobbler plugin
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Tue, 12 May 2009 08:30:43 +0200 |
parents | be86c72a06c9 |
children |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * * This source code is public domain. */ //open() #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> //mmap() #include <unistd.h> #include <sys/mman.h> #include <cstdlib> #include "arch_raw.h" arch_Raw::arch_Raw(const string& aFileName) { mFileDesc = aud_vfs_fopen(aFileName.c_str(), "rb"); //open and mmap the file if(mFileDesc == NULL) { mSize = 0; return; } aud_vfs_fseek(mFileDesc, 0, SEEK_END); mSize = aud_vfs_ftell(mFileDesc); aud_vfs_fseek(mFileDesc, 0, SEEK_SET); mMap = malloc(mSize); aud_vfs_fread(mMap, 1, mSize, mFileDesc); } arch_Raw::~arch_Raw() { if(mSize != 0) { free(mMap); aud_vfs_fclose(mFileDesc); } } bool arch_Raw::ContainsMod(const string& aFileName) { return IsOurFile(aFileName); }