[patch 1/1] 000_hardened_build
[email protected] Tue, 25 Mar 2014 14:07:28 +0100
| Newsgroups | gmane.linux.tools.diag.devel |
|---|---|
| Message-ID | <[email protected]> |
--===============2740696844024187309== Content-Disposition: inline; filename=000_hardened_build 000_hardened_build Signed-off-by: Frédéric Bonnard <[email protected]> --- a/src/servicelog.c +++ b/src/servicelog.c @@ -279,7 +279,7 @@ if (newline != NULL) { prnt_len = newline - &tmpbuf[offset] + 1; snprintf(buf + buf_offset, prnt_len, - &tmpbuf[offset]); + "%s", &tmpbuf[offset]); buf_offset = strlen(buf); buf_offset += sprintf(buf + buf_offset, "\n"); offset += prnt_len; @@ -297,7 +297,7 @@ } /* print up to the last brkpt */ - snprintf(buf + buf_offset, prnt_len, &tmpbuf[offset]); + snprintf(buf + buf_offset, prnt_len, "%s", &tmpbuf[offset]); buf_offset = strlen(buf); buf_offset += sprintf(buf + buf_offset, "\n"); offset += prnt_len; @@ -305,10 +305,10 @@ } } - prnt_len = sprintf(buf + buf_offset, &tmpbuf[offset]); + prnt_len = sprintf(buf + buf_offset, "%s", &tmpbuf[offset]); line_offset += prnt_len; - return fprintf(stream, buf); + return fprintf(stream, "%s", buf); } /** @@ -583,7 +583,7 @@ rc = sqlite3_open(log->location, &(log->db)); if (rc) { - snprintf(log->error, SL_MAX_ERR, sqlite3_errmsg(log->db)); + snprintf(log->error, SL_MAX_ERR, "%s", sqlite3_errmsg(log->db)); servicelog_close(log); return ENOENT; } --- a/src/v29_print.c +++ b/src/v29_print.c @@ -152,7 +152,7 @@ if (newline != NULL) { prnt_len = newline - &tmpbuf[offset] + 1; - snprintf(buf + buf_offset, prnt_len, &tmpbuf[offset]); + snprintf(buf + buf_offset, prnt_len, "%s", &tmpbuf[offset]); buf_offset = strlen(buf); buf_offset += sprintf(buf + buf_offset, "\n"); offset += prnt_len; @@ -171,7 +171,7 @@ } /* print up to the last brkpt */ - snprintf(buf + buf_offset, prnt_len, &tmpbuf[offset]); + snprintf(buf + buf_offset, prnt_len, "%s", &tmpbuf[offset]); buf_offset = strlen(buf); buf_offset += sprintf(buf + buf_offset, "\n"); offset += prnt_len; @@ -180,10 +180,10 @@ } - prnt_len = sprintf(buf + buf_offset, &tmpbuf[offset]); + prnt_len = sprintf(buf + buf_offset, "%s", &tmpbuf[offset]); line_offset += prnt_len; - len = fprintf(stream, buf); + len = fprintf(stream, "%s", buf); return len; } --===============2740696844024187309== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech --===============2740696844024187309== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Linux-diag-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-diag-devel --===============2740696844024187309==--