diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-05-09 11:19:33 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-05-09 11:19:33 -0700 |
commit | af90a105ec97c6d856d2e8a80e8822c3e192d1e9 (patch) | |
tree | 88e8a1428621f6dd10eb7c37370723d2e6a1b7e8 /setvalues.c | |
parent | 9ffefd5b3d38e9ed2b5ed59bc50e8a7da761fb77 (diff) |
Replace remaining sprintf calls with snprintf
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'setvalues.c')
-rw-r--r-- | setvalues.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/setvalues.c b/setvalues.c index a28bcf9..09896d1 100644 --- a/setvalues.c +++ b/setvalues.c @@ -64,13 +64,14 @@ PrintSetValuesError(Event *event) sv_event->info[i].widgets.num_widgets); if (node == NULL) { - sprintf(buf, "Editres Internal Error: Unable to FindNode.\n"); + snprintf(buf, sizeof(buf), + "Editres Internal Error: Unable to FindNode.\n"); AddString(&errors, buf); continue; } - sprintf(buf, "%s(0x%lx) - %s\n", node->name, node->id, - sv_event->info[i].message); + snprintf(buf, sizeof(buf), "%s(0x%lx) - %s\n", node->name, node->id, + sv_event->info[i].message); AddString(&errors, buf); } return(errors); |