Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Aug 2003 06:24:21 -0700 (PDT)
From:      Hartmut Brandt <harti@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/ddb db_access.c
Message-ID:  <200308121324.h7CDOL35047146@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
harti       2003/08/12 06:24:21 PDT

  FreeBSD src repository

  Modified files:
    sys/ddb              db_access.c 
  Log:
  db_get_value uses a local buffer to first fetch all the bytes of a
  integer value and then to construct the integer from it. This buffer
  was sizeof(int) bytes long, which was fine until the (undocumented) 'g'
  modifier for 8-byte integers was introduced. Change this to sizeof(uint64_t).
  
  Revision  Changes    Path
  1.17      +1 -1      src/sys/ddb/db_access.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308121324.h7CDOL35047146>