diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-11-28 15:14:47 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-11-28 15:14:47 +0000 |
commit | 3325430aeea8ea84a271dc2dfd5a6eda261064f7 (patch) | |
tree | a023d3e0c03ee4c4d5e533bd3b02546afafbd8be /astro/gpstk/files/patch-lib-rxio-NovatelData.hpp | |
parent | - set LATEST_LINK to not overlap with sysutils/filelight (diff) |
- Fix insufficient buffer size for reading dual frequency NovaTel OEM4 range data
PR: 140855
Submitted by: IPS FreeBSD <freebsd@ips.gov.au>
Notes
Notes:
svn path=/head/; revision=244920
Diffstat (limited to 'astro/gpstk/files/patch-lib-rxio-NovatelData.hpp')
-rw-r--r-- | astro/gpstk/files/patch-lib-rxio-NovatelData.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/astro/gpstk/files/patch-lib-rxio-NovatelData.hpp b/astro/gpstk/files/patch-lib-rxio-NovatelData.hpp new file mode 100644 index 000000000000..8c26ee2117cd --- /dev/null +++ b/astro/gpstk/files/patch-lib-rxio-NovatelData.hpp @@ -0,0 +1,11 @@ +--- lib/rxio/NovatelData.hpp.FCS 2009-11-24 09:08:58.000000000 +1100 ++++ lib/rxio/NovatelData.hpp 2009-11-24 09:09:34.000000000 +1100 +@@ -165,7 +165,7 @@ + + private: + /// private data members +- unsigned char buffer[1024]; ///< buffer for raw data ++ unsigned char buffer[2048]; ///< buffer for raw data + + /// Reference GPS week, for OEM2, where the nav records require a GPS week, + /// but only the obs records have one, and then it is 10-bit. |