patch 8.2.1866: Vim9: appending to pushed blob gives wrong result

Problem:    Vim9: appending to pushed blob gives wrong result.
Solution:   Set ga_maxlen when copying a blob.
diff --git a/src/blob.c b/src/blob.c
index f105170..264962e 100644
--- a/src/blob.c
+++ b/src/blob.c
@@ -80,6 +80,7 @@
 		len = 0;
 	}
 	to->vval.v_blob->bv_ga.ga_len = len;
+	to->vval.v_blob->bv_ga.ga_maxlen = len;
     }
     return ret;
 }