Home > Blockchain >  Visual studio "module unsafe for SAFESEH image" occurring when building release in Assembl
Visual studio "module unsafe for SAFESEH image" occurring when building release in Assembl

Time:05-26

I've been following this youtube tutorial to begin learning about Assembly: A screenshot of me on visual studio going through the errors.

And here's another screenshot of my properties:

My visual studio properties

I'm a bit confused, since some other forums say to just change a setting, but since I deleted those default project folders I don't have it. Or is it something simple that I'm missing?

CodePudding user response:

I found a comment saying to replace the old build command from ml /c /Cx /coff "%(FullPath)" to ml /c /Cx /coff /safeseh "%(FullPath)" (notice the addition of /safeseh), which resolved the issue.

  • Related