You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-chemistry/molden/files/molden-4.8-overflow.patch

39 lines
714 B

xwin.c | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/xwin.c b/xwin.c
index f395909..092edff 100644
--- a/xwin.c
+++ b/xwin.c
@@ -13552,7 +13552,7 @@ void NewActiveStruct()
#ifdef CRAY
_fcd ztr;
#else
- char ztr;
+ char ztr[4];
#endif
#endif
@@ -13650,8 +13650,10 @@ void NewActiveStruct()
*/
clfpstr->ihashz = 0;
#else
- strncpy(&ztr,HetAtm[j],3);
- parhet_(&j1,&ztr);
+ if (HetAtm[j] != NULL) {
+ strncpy(ztr,HetAtm[j],3);
+ parhet_(&j1,ztr);
+ }
#endif
#endif
}
@@ -27353,7 +27355,7 @@ char *errstr;
UpdateZME();
RedrawScroll(&zscroll);
}
- strcpy(ZMEerr,errstr);
+ strncpy(ZMEerr,errstr,MAXZMEERR);
RedrawStatus();
}