[subset] add comment to copy_bytes().
diff --git a/src/hb-serialize.hh b/src/hb-serialize.hh
index 2f23b58..f732515 100644
--- a/src/hb-serialize.hh
+++ b/src/hb-serialize.hh
@@ -547,6 +547,8 @@
     unsigned int len = (this->head - this->start)
 		     + (this->end  - this->tail);
 
+    // If len is zero don't malloc as the memory won't get properly
+    // cleaned up later.
     if (!len) return hb_bytes_t ();
 
     char *p = (char *) malloc (len);