/julius-master/julius/visual.c line1587 Code: char buf[80]; static char command[250]; int fd; if (re->speechlen == 0) return; /* play waveform */ snprintf(buf, 250, "/var/tmp/julius_visual_play.%d", getpid()); // <-- maybe out of bounds (250 vs 80)
/julius-master/julius/visual.c line1587
Code:
char buf[80];
static char command[250];
int fd;
if (re->speechlen == 0) return;
/* play waveform */
snprintf(buf, 250, "/var/tmp/julius_visual_play.%d", getpid()); // <-- maybe out of bounds (250 vs 80)