fixed memory leak

This commit is contained in:
Hane 2023-08-24 17:08:22 +02:00
commit 8a9ecdccff
3 changed files with 23 additions and 3 deletions

View file

@ -18,6 +18,15 @@ struct NGuid {
uint16_t data2;
uint16_t data3;
unsigned char data4[8];
/* void freeData4(){ */
/* int i = 0; */
/* do{ */
/* if(this->data4 + i != nullptr) free(data4 + i); */
/* i++; */
/* }while (i < 8); */
/* } */
};
struct BackEndpointCallbackInfo {