124@@ -125,10 +125,10 @@ static void secp256k1_fe_to_storage(secp256k1_fe_storage *r, const secp256k1_fe
125 /** Convert a field element back from the storage type. */
126 static void secp256k1_fe_from_storage(secp256k1_fe *r, const secp256k1_fe_storage *a);
127
128-/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. */
129+/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. both *r and *a must be initialized.*/
130 static void secp256k1_fe_storage_cmov(secp256k1_fe_storage *r, const secp256k1_fe_storage *a, int flag);
131
132-/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. */
133+/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. both *r and *a must be initialized.*/
0/** If flag is true, set *r equal to *a; otherwise leave it. Constant-time. Both *r and *a must be initialized.*/