1
0
mirror of https://github.com/golang/go synced 2024-10-04 22:21:22 -06:00
go/src/pkg
Russ Cox 249f807c39 runtime: mark concatstring as variadic (fixes 386 build)
Windows was the only one seeing this bug reliably in the builder,
but it was easy to reproduce using 'GOGC=1 go test strconv'.
concatstring looked like it took only one string, but in fact it
takes a long list of strings. Add an explicit ... so that the traceback
will not use the "fixed" frame size and instead look at the
frame size metadata recorded by the caller.

R=golang-dev
TBR=golang-dev
CC=golang-dev
https://golang.org/cl/11531043
2013-07-18 12:19:38 -04:00
..
archive all: avoid leaking fds during tests 2013-06-21 11:13:14 +10:00
bufio bufio: fix SplitFunc docs 2013-05-23 04:38:32 +08:00
builtin builtin: document print and println 2013-07-09 16:20:19 -07:00
bytes runtime/bytes: fast Compare for byte arrays and strings. 2013-05-14 16:05:51 -07:00
compress compress/bzip2: don't panic on invalid input. 2013-06-24 10:59:41 -04:00
container container/heap: fix int overflow bug 2013-03-04 10:25:21 -05:00
crypto crypto/tls: Add support for ECDHE-ECDSA 2013-07-17 12:33:16 -04:00
database/sql database/sql: remove extra RemoveDep call 2013-05-21 14:58:08 -07:00
debug debug/gosym: avoid test failure on Windows 2013-07-18 11:01:58 -04:00
encoding encoding/json: add more tests for UTF-8 coercion 2013-07-12 20:40:50 -04:00
errors
expvar
flag flag: add Getter interface; implement for all Value types 2013-06-27 15:30:45 -07:00
fmt all: excise some warts found by vet -shadow 2013-06-20 16:14:40 -07:00
go image/gif: add writer implementation 2013-07-15 10:57:01 +10:00
hash hash: tweak the package docs 2013-06-24 16:53:13 -07:00
html html: add escaping tests 2013-07-10 17:31:46 +10:00
image image/gif: don't write superfluous global color table 2013-07-18 11:11:23 +10:00
index/suffixarray
io io: let SectionReader seek past the end; document Seeker semantics more 2013-07-18 13:03:26 +10:00
log log/syslog: fix typo: change Wanring to Warning 2013-07-14 12:56:11 +10:00
math math/big: fix Errorf verb 2013-06-18 14:16:40 -07:00
mime mime: add support for Plan 9 2013-06-04 17:30:45 -07:00
net net/http: document NewRequest treating Reader as ReadCloser 2013-07-18 10:10:10 +10:00
os os: rename error_posix.go to error_unix.go 2013-06-24 11:23:37 +10:00
path path/filepath: Skip TestEvalSymlinks. Plan 9 doesn't have symlinks. 2013-05-24 11:01:04 -07:00
reflect reflect: add Value.Slice3 and Value.SetCap methods, to match x[i:j:k] 2013-07-01 20:32:53 -04:00
regexp regexp: doc fix 2013-05-02 18:59:39 -07:00
runtime runtime: mark concatstring as variadic (fixes 386 build) 2013-07-18 12:19:38 -04:00
sort sort: fix 32-bit build 2013-07-01 21:44:14 -04:00
strconv strconv: corrected several bad references to err.Error in doc comments. 2013-06-13 17:04:47 -07:00
strings bytes,strings: remove user name from BUG in comment 2013-03-19 15:04:18 -07:00
sync sync/atomic: remove test dependency on net/http 2013-07-01 17:27:19 -04:00
syscall syscall: record argument size for all assembly functions 2013-07-16 16:23:53 -04:00
testing cmd/go, testing: streamline direct use of test binaries 2013-07-12 20:40:30 -04:00
text text/template: comment fix 2013-05-03 14:22:34 -07:00
time time: find correct zone abbreviations even on non-English windows systems 2013-07-10 15:34:24 +10:00
unicode unicode: modify a comment to the convention format. 2013-03-19 14:47:41 -04:00
unsafe