EDIT: Problem solved, after changing a lot of the code, not only in the functions mentioned here, the error stopped.
I'm getting this error and I have no idea what might be causing it, I've never seen this error before. Any tips on the cause of the error?
AfterclickingBreakthecodethatappearsisthis:
_CRTIMPPFLS_GETVALUE_FUNCTION__cdecl__set_flsgetvalue(){#ifdef_M_IX86PFLS_GETVALUE_FUNCTIONflsGetValue=FLS_GETVALUE;if(!flsGetValue){flsGetValue=DecodePointer(gpFlsGetValue);TlsSetValue(__getvalueindex,flsGetValue);}returnflsGetValue;#else/*_M_IX86*/returnNULL;#endif/*_M_IX86*/}
Theerroroccurswhenyougettothispartofthecode:
voidimprime_vertices(head*h){inti,n;n=(h[0]).grau;for(i=1;i<=n;i++){printf("%d %d %d\n", h[i].vertice[0], h[i].vertice[1], h[i].vertice[2]);
}
printf("\n");
}