Site Privacy | Accessibility | Privacy Program | Copyrights | Vulnerability Disclosure | No Fear Act Policy | FOIA | Environmental Policy | Scientific Integrity | Information Quality Standards | Commerce.gov | Science.gov | USA.gov

2500/24

By selecting these links, you will be leaving NIST webspace. We have provided these links to other web sites because they may have information that would be of interest to you. No inferences should be drawn on account of other sites being referenced, or not, from this page. There may be other web sites that are more appropriate for your purpose. NIST does not necessarily endorse the views expressed, or concur with the facts presented on these sites. Further, NIST does not endorse any commercial products that may be mentioned on these sites. Please address comments about this page to nvd@nist.gov.

Official websites use .gov A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS A lock () or https:// means you've safely connected to the .gov website. Share sensitive information only on official, secure websites.

2600*365

NM_broadband Station List Station Name Network Latitude Longitude Elevation ChannelsDescriptionOndate Offdate CLTN NM 36.091099 -86.331497 208 HHE HHN HHZ HNE HNN HNZ Cedars of Lebanon,TN 2013,025,00:00:00.0000 2500,365,23:59:59.9999 GLAT NM 36.269001 -89.288002 120 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Glass,TN 1999,183,00:00:00.0000 2500,365,23:59:59.9999 GNAR NM 35.965000 -90.017998 71 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Gosnell,AR 2000,032,00:00:00.0000 2500,365,23:59:59.9999 HALT NM 35.910999 -89.339996 85 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Halls,TN 1999,183,00:00:00.0000 2500,365,23:59:59.9999 HBAR NM 35.555000 -90.656998 74 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Harrisburg,AR(CERI) 1999,309,00:00:00.0000 2500,365,23:59:59.9999 HENM NM 36.716000 -89.472000 88 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Henderson Mound,MO 1999,132,00:00:00.0000 2500,365,23:59:59.9999 HICK NM 36.541000 -89.228996 141 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Hickman,KY 1999,147,00:00:00.0000 2500,365,23:59:59.9999 LNXT NM 36.101002 -89.490997 144 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Lenox,TN 1999,183,00:00:00.0000 2500,365,23:59:59.9999 LPAR NM 35.602001 -90.300003 67 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Lepanto,AR 1999,309,00:00:00.0000 2500,365,23:59:59.9999 PARM NM 36.664001 -89.751999 85 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Stahl Farm,MO 1999,145,00:00:00.0000 2500,365,23:59:59.9999 PEBM NM 36.112999 -89.862000 76 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Pemiscot Bayou,MO 1999,183,00:00:00.0000 2500,365,23:59:59.9999 PENM NM 36.450001 -89.627998 85 BLE BLN BLZ HHE HHN HHZ HNE HNN HNZ Penman,Portageville,MO 1999,183,00:00:00.0000 2500,365,23:59:59.9999

In the Linux kernel, the following vulnerability has been resolved: igb: Fix string truncation warnings in igb_set_fw_version Commit 1978d3ead82c ("intel: fix string truncation warnings") fixes '-Wformat-truncation=' warnings in igb_main.c by using kasprintf. drivers/net/ethernet/intel/igb/igb_main.c:3092:53: warning:‘%d’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 1 and 13 [-Wformat-truncation=] 3092 | "%d.%d, 0x%08x, %d.%d.%d", | ^~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: note:directive argument in the range [0, 65535] 3092 | "%d.%d, 0x%08x, %d.%d.%d", | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/intel/igb/igb_main.c:3092:34: note:directive argument in the range [0, 65535] drivers/net/ethernet/intel/igb/igb_main.c:3090:25: note:‘snprintf’ output between 23 and 43 bytes into a destination of size 32 kasprintf() returns a pointer to dynamically allocated memory which can be NULL upon failure. Fix this warning by using a larger space for adapter->fw_version, and then fall back and continue to use snprintf.