Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(283)

Unified Diff: src/pkg/os/file_windows.go

Issue 2763041: code review 2763041: use copy (Closed)
Patch Set: code review 2763041: use copy Created 14 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/os/env_windows.go ('k') | src/pkg/scanner/scanner_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/os/file_windows.go
===================================================================
--- a/src/pkg/os/file_windows.go
+++ b/src/pkg/os/file_windows.go
@@ -159,9 +159,7 @@
count--
if len(fi) == cap(fi) {
nfi := make([]FileInfo, len(fi), 2*len(fi))
- for i := 0; i < len(fi); i++ {
- nfi[i] = fi[i]
- }
+ copy(nfi, fi)
fi = nfi
}
fi = fi[0 : len(fi)+1]
« no previous file with comments | « src/pkg/os/env_windows.go ('k') | src/pkg/scanner/scanner_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b