GCS: FileWriter.Size: return offset + buffer size for Writers that are not closed

Signed-off-by: Arthur Baars <arthur@semmle.com>
This commit is contained in:
Arthur Baars 2016-05-09 15:39:46 +01:00
parent 1e0f3b7b64
commit 431e46a7f9

View file

@ -494,7 +494,7 @@ func (w *writer) Write(p []byte) (int, error) {
// Size returns the number of bytes written to this FileWriter. // Size returns the number of bytes written to this FileWriter.
func (w *writer) Size() int64 { func (w *writer) Size() int64 {
if !w.closed { if !w.closed {
return w.size + int64(w.buffSize) return w.offset + int64(w.buffSize)
} }
return w.size return w.size
} }