File: buffer-sizing-error.diff

package info (click to toggle)
dropbear 0.45-2sarge0
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,248 kB
  • ctags: 4,782
  • sloc: ansic: 53,626; sh: 2,703; makefile: 510; perl: 427; asm: 30
file content (13 lines) | stat: -rw-r--r-- 349 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
--- svr-chansession.c
+++ svr-chansession.c
@@ -810,7 +810,7 @@
 	/* need to increase size */
 	if (i == svr_ses.childpidsize) {
 		svr_ses.childpids = (struct ChildPid*)m_realloc(svr_ses.childpids,
-				sizeof(struct ChildPid) * svr_ses.childpidsize+1);
+				sizeof(struct ChildPid) * (svr_ses.childpidsize+1));
 		svr_ses.childpidsize++;
 	}