cscope/cscope-15.8-empty-function-array.patch
Neil Horman 4c1bfcad21 Fix empty function array in putpostingref()
Resolves: bz 1087940
2014-04-15 12:40:18 -04:00

15 lines
604 B
Diff

diff -up ./src/find.c.orig ./src/find.c
--- ./src/find.c.orig 2014-04-15 12:17:44.412383314 -0400
+++ ./src/find.c 2014-04-15 12:19:17.122065215 -0400
@@ -1201,7 +1201,9 @@ getposting(void)
static void
putpostingref(POSTING *p, char *pat)
{
- static char function[PATLEN + 1]; /* function name */
+ // initialize function to "unknown" so that the first line of temp1
+ // is properly formed if symbol matches a header file entry first time
+ static char function[PATLEN + 1] = "unknown";/* function name */
if (p->fcnoffset == 0) {
if (p->type == FCNDEF) { /* need to find the function name */