Skip to content

Fix vtkWrapTcl assert on isprint for Visual Studio.

David Gobbi requested to merge dgobbi/vtk:wraptcl-nonascii into master

If an out-of-range value is sent to isprint(), then programs generated by Visual Studio 2010 and later will assert. I suspect that it does this because the alternative would be to guess the encoding and potentially give an incorrect answer, which could compromise the security of the executable.

Merge request reports