Skip to content

Commit

Permalink
Increase size of filename related buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
seanm committed Apr 26, 2016
1 parent b6a0ea0 commit 325ef8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IO/MINC/vtkMINCImageReader.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ int vtkMINCImageReader::ReadMINCFileAttributes()
// Get the name from the file name by removing the path and
// the extension.
const char *fileName = this->FileName;
char name[128];
char name[4096];
name[0] = '\0';
int startChar = 0;
int endChar = static_cast<int>(strlen(fileName));
Expand Down

0 comments on commit 325ef8b

Please sign in to comment.