libbb/xrealloc_vector.c: better comment
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 27 Oct 2009 09:01:01 +0000 (10:01 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 27 Oct 2009 09:01:01 +0000 (10:01 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/xrealloc_vector.c

index bbd5ab8ac3d00605f0ac06499c463c3cf3d7e534..98fa9678e07997fb71c6b938dea098863d604a1f 100644 (file)
@@ -20,8 +20,9 @@
  * idx step, plus one: if idx == 0x20, vector[] is resized to 0x31,
  * thus last usable element is vector[0x30].
  *
- * In other words: after xrealloc_vector(v, 4, idx) it's ok to use
- * at least v[idx] and v[idx+1], for all idx values.
+ * In other words: after xrealloc_vector(v, 4, idx), with any idx,
+ * it's ok to use at least v[idx] and v[idx+1].
+ * v[idx+2] etc generally are not ok.
  *
  * New elements are zeroed out, but only if realloc was done
  * (not on every call). You can depend on v[idx] and v[idx+1] being