Skip to content

Commit

Permalink
Merge pull request #1 from markuslaker/master
Browse files Browse the repository at this point in the history
Fix gcc 8.3.1 warning about snprintf truncation
  • Loading branch information
pixelb committed May 22, 2019
2 parents 927ba99 + 4fb1531 commit 8f795e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvd-vr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ int main(int argc, char** argv)
}

int vob_fd=-1;
char vob_name[sizeof(vob_base)+4];
char vob_name[sizeof(vob_base)+32];
if (vro_fd!=-1) {
if (STREQ(base_name, "-")) {
vob_fd=fileno(stdout);
Expand Down

0 comments on commit 8f795e8

Please sign in to comment.