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/app-editors/teco/files/teco-double-free.diff

23 lines
907 B

https://bugs.gentoo.org/103257
--- teco-orig/te_exec2.c
+++ teco/te_exec2.c
@@ -197,7 +197,7 @@
{
if (eisw) /* if ending a file execute, restore the previous "old command string" */
{
- fclose(eisw); /* return the file descriptor */
+ fclose(eisw), eisw = NULL; /* return the file descriptor */
dly_free_blist(cbuf.f); /* return the command string used by the file (after execution done) */
cbuf.f = oldcstring.f;
cbuf.z = oldcstring.z;
@@ -214,7 +214,7 @@
oldcstring.z = cbuf.z;
cbuf.f = NULL; /* and make it inaccessible to "rdcmd" */
}
- if (eisw) fclose(eisw); /* if a command file had been open, close it */
+ if (eisw) fclose(eisw), eisw = NULL; /* if a command file had been open, close it */
esp->val1 = (eisw = t_eisw) ? -1 : 0;
esp->flag1 = colonflag;
colonflag = 0;