previous frame inner to this frame (gdb could not unwind past this frame) ERROR..

opencv2.2にしてからxcodeで動かないー><
サンプルは動いたんだけどなー あとちょっと

#include <stdio.h>
#include "cv.h"
#include "highgui.h"
#include "globalVariable.h"

int main(int argc, char** argv){
	IplImage* hoge;
	hoge = cvLoadImage("camera.png",1);

	cvNamedWindow("W",1);
	cvShowImage("W",hoge);

	cvWaitKey(1000);

	cvReleaseImage(&hoge);
	cvDestroyWindow("W");

	return 0;
}