You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, the header file donut.h in both lib directory and release zip (v1.0) is wrong. Using it with donut library (tested with dll) leads to wrong DONUT_CONFIG value passed to DonutCreate(). The culprit is: char decoy[MAX_PATH * 2]; // path of decoy module
which in new version is: char decoy[2056]; // path of decoy module
Thanks for your amazing work!
The text was updated successfully, but these errors were encountered:
Hi, the header file donut.h in both lib directory and release zip (v1.0) is wrong. Using it with donut library (tested with dll) leads to wrong DONUT_CONFIG value passed to DonutCreate(). The culprit is:
char decoy[MAX_PATH * 2]; // path of decoy module
which in new version is:
char decoy[2056]; // path of decoy module
Thanks for your amazing work!
The text was updated successfully, but these errors were encountered: