[BACK]Return to dbm_map.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/dbm_map.c between version 1.4 and 1.5

version 1.4, 2016/08/22 16:07:16 version 1.5, 2016/08/30 21:37:24
Line 143  void *
Line 143  void *
 dbm_get(int32_t offset)  dbm_get(int32_t offset)
 {  {
         offset = be32toh(offset);          offset = be32toh(offset);
         if (offset < 0 || offset >= max_offset) {          if (offset < 0) {
                   warnx("dbm_get: Database corrupt: offset %d", offset);
                   return NULL;
           }
           if (offset >= max_offset) {
                 warnx("dbm_get: Database corrupt: offset %d > %d",                  warnx("dbm_get: Database corrupt: offset %d > %d",
                     offset, max_offset);                      offset, max_offset);
                 return NULL;                  return NULL;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb