if((str_qurery = (char*)malloc(sizeof(char) * content_len +1))!=NULL)
{생략...
if(str_qurery!=NULL) free(srt_query);
이문법이 동적할당 인지요???
if((str_qurery = (char*)malloc(sizeof(char) * content_len +1))!=NULL)
{생략...
if(str_qurery!=NULL) free(srt_query);
이문법이 동적할당 인지요???
네엥