我不擅长C编程,所以如果这不是一个强有力的问题,请原谅。在以下代码中,我只能在获得samplesVec
的值后将内存分配给nsamplepts
,但我需要将向量samplesVec
返回到main
以供进一步使用(尚未编码)。但是,我收到以下错误:
终端窗口错误: ImportSweeps(3497,0x7fff7b129310)malloc: *对象0x7fdaa0c03af8的错误:释放的指针未分配 * 在malloc_error_break中设置断点以进行调试 中止陷阱:6
我正在使用Mac OS X Mavericks和gcc编译器。谢谢你的帮助。
* EDITED !!!在评论员有价值的投入之后,以下代表了解决原始问题的解决方案(不再提供)*
以下代码修改似乎解决了我原来的问题。感谢大家的宝贵意见!
/* Header Files */
#define LIBAIFF_NOCOMPAT 1 // do not use LibAiff 2 API compatibility
#include <libaiff/libaiff.h>
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <math.h>
/* Function Declarations */
void FileSearch(char*, char*, char*, char*, char*);
int32_t *ImportSweeps(char*);
/* Main */
int main()
{
char flag1[2] = "N";
char binname[20] = "bin1"; // dummy assignment
char buildfilename[40] = "SweepR";
char skeletonpath[100] = "/Users/.../Folder name/";
int k, len;
/* Find the sweep to be imported in the directory given by filepath */
FileSearch(skeletonpath, binname, buildfilename, skeletonpath, flag1);
if (strcmp(flag1,"Y")) {
printf("No file found. End of program.\n");
} else {
len = (int) strlen(skeletonpath);
char *filepath = malloc(len);
for (k = 0; k < len; k++) {
filepath[k] = skeletonpath[k];
}
printf("File found! Filepath: %s\n", filepath);
// Proceed to import sweep
int32_t *sweepRfile = ImportSweeps(filepath);
if (sweepRfile) {
printf("Success!\n");
// Do other things with sweepRfile
free(sweepRfile);
}
free(filepath);
}
return 0;
}
/* Sub-Routines */
void FileSearch(char *dir, char *binname, char *buildfilename, char* filepath, char* flag1)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;
if((dp = opendir(dir)) == NULL) {
fprintf(stderr,"Cannot open directory: %s\n", dir);
return;
}
chdir(dir);
while((entry = readdir(dp)) != NULL) {
lstat(entry->d_name, &statbuf);
if(S_ISDIR(statbuf.st_mode)) {
/* Found a directory, but ignore . and .. */
if(strcmp(".",entry->d_name) == 0 || strcmp("..",entry->d_name) == 0)
continue;
strcpy(binname,entry->d_name);
strcpy(buildfilename,"SweepR");
/* Recurse at a new indent level */
FileSearch(entry->d_name, binname, buildfilename, filepath, flag1);
}
else {
sprintf(buildfilename, "%s%s.aiff", buildfilename, binname);
if (strcmp(entry->d_name,buildfilename)) {
strcpy(buildfilename,"SweepR");
} else {
sprintf(filepath, "%s%s/%s", filepath, binname, buildfilename);
strcpy(flag1,"Y");
break;
}
}
}
chdir("..");
closedir(dp);
}
int32_t *ImportSweeps(char *filepath)
{
char *filepathread = filepath;
/* Initialize files for importing */
AIFF_Ref fileref;
/* Intialize files for getting information about AIFF file */
uint64_t nSamples;
int32_t *samples = NULL;
int32_t *samplesVec = NULL;
int channels, bitsPerSample, segmentSize, ghost, nsamplepts;
double samplingRate;
/* Import Routine */
fileref = AIFF_OpenFile(filepathread, F_RDONLY) ;
if(fileref)
{
// File opened successfully. Proceed.
ghost = AIFF_GetAudioFormat(fileref, &nSamples, &channels, &samplingRate, &bitsPerSample, &segmentSize);
if (ghost < 1)
{
printf("Error getting audio format.\n");
AIFF_CloseFile(fileref); return (int32_t) 0;
}
nsamplepts = ((int) nSamples)*channels;
samples = malloc(nsamplepts * sizeof(int32_t));
samplesVec = malloc(nsamplepts * sizeof(int32_t));
ghost = AIFF_ReadSamples32Bit(fileref, samples, nsamplepts);
if (ghost) {
for (int k = 0; k < nsamplepts; k++) {
samplesVec[k] = *(samples+k);
}
}
free(samples);
AIFF_CloseFile(fileref);
}
return samplesVec;
}
答案 0 :(得分:1)
所以...据我所知......: - )
samplesVec
,如果ImportSweeps
为false,则fileref
的返回值未初始化。如果未明确初始化samplesVec
,则自动(== local)变量无法保证其值 - 换言之,samplesVec
可以携带任何地址。如果samplesVec
运气不是NULL
(另一方面可能经常是这种情况),你会尝试free
一个未分配的内存垃圾,或者运气不好的其他地方分配一个。
如果我猜对了,你可以轻松解决这个问题:
int32_t *samples;
int32_t *samplesVec = NULL;
无论如何,如果不在下一行中使用它,请尽快使用一些有意义的错误或虚拟值来初始化任何变量。由于指针是可怕的野兽,如果我没有在声明中使用有用的值初始化它们,我总是NULL
。
编辑:几个小的小改动,用于可读的英语近似值。 :-)
答案 1 :(得分:0)
如果AIFF_OpenFile失败,则ImportSweeps返回未定义的值,因为samplesVec未初始化。如果该值为非NULL,则main将尝试释放它。您可以初始化samplesVec = NULL,也可以将代码重新组织为
fileref = AIFF_OpenFile(filepathread, F_RDONLY) ;
if(!fileref) {
{
// print error message here
return NULL;
}
// File opened successfully. Proceed.
...
有些人会坚持一个只应该有一个退出的功能 - 他们知情度很差,并且表达了其他同样不知情和教条的人所散布的错误教条。上面的错误检查和返回被称为保护条款。每次测试成功时缩进的替代样式都会产生箭头反模式,这种模式更难以阅读,更难修改,更容易出错。有关讨论,请参阅http://blog.codinghorror.com/flattening-arrow-code/和http://c2.com/cgi/wiki?ArrowAntiPattern。