]> code.citadel.org Git - citadel.git/blobdiff - citadel/server/room_ops.c
Marked code that will require some rework for LMDB.
[citadel.git] / citadel / server / room_ops.c
index 56c20e0d030436ab7c8099801fb3713bd34dbd49..1566e74b0a85261426a9bd1994816048a0beca8b 100644 (file)
@@ -670,7 +670,7 @@ void CtdlUserGoto(char *where, int display_result, int transiently, int *retmsgs
         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
         if (cdbfr != NULL) {
                msglist = (long *) cdbfr->ptr;
-               cdbfr->ptr = NULL;                      // CtdlUserGoto() now owns this memory
+               cdbfr->ptr = NULL;                      // CtdlUserGoto() now owns this memory (this requires attention if we move to LMDB)
                num_msgs = cdbfr->len / sizeof(long);
                cdb_free(cdbfr);
        }