Out of memory
Mobile
1
Posts
1
Posters
0
Views
1
Watching
-
Hi all, I need to write application in Pocket PC. It is about using showing video on screen from web cam. I had free the buffer, but the "out of memory" dialog still pop up after 2 minutes.... unsigned char *pbuffer=(unsigned char *)malloc(m_Width * m_Height*6); unsigned char *rpbuffer=(unsigned char *)malloc(m_Width * m_Height*6); //this is allocation of memory free(pbuffer); pbuffer = NULL; free(rpbuffer); rpbuffer = NULL; //this is the code of free memory please help.......................:doh: p.s. I am using eVC++ 4.0 on PPC 2003....