|
| 1 | +commit 21f80b6288 |
| 2 | +Author: João Valverde < [email protected]> |
| 3 | +Date: Tue Sep 17 19:07:54 2019 +0100 |
| 4 | + |
| 5 | + Fix build with non-standard install prefix |
| 6 | + |
| 7 | + The variables BUILD_dumpcap and PCAP_FOUND are defined after the if |
| 8 | + condition, therefore wireshark is built with a relative RPATH and |
| 9 | + library loading for privileged processes fails with glibc. |
| 10 | + |
| 11 | + Move the definition of BUILD_dumpcap before it is used and drop |
| 12 | + the test for PCAP_FOUND. |
| 13 | + |
| 14 | + Move a comment to the proper line while at it. |
| 15 | + |
| 16 | + Change-Id: Ie151a3781898e712f9e324e9ef995022bbea40b6 |
| 17 | + Reviewed-on: https://code.wireshark.org/review/34564 |
| 18 | + Petri-Dish: João Valverde < [email protected]> |
| 19 | + Tested-by: Petri Dish Buildbot |
| 20 | + Reviewed-by: Guy Harris < [email protected]> |
| 21 | + Reviewed-on: https://code.wireshark.org/review/34572 |
| 22 | + Reviewed-by: João Valverde < [email protected]> |
| 23 | + |
| 24 | +commit 6d452f0f08 |
| 25 | +Author: Gerald Combs < [email protected]> |
| 26 | +Date: Thu Sep 19 09:04:21 2019 -0700 |
| 27 | + |
| 28 | + NSIS: Tell the user to uninstall Npcap 0.99[45] manually. |
| 29 | + |
| 30 | + Npcap 0.994 and 0.995 might crash the system while being removed. Later |
| 31 | + versions of the installer warn about this, but a MessageBox doesn't |
| 32 | + provide much space to describe what's going on. |
| 33 | + |
| 34 | + Add manual uninstallation instructions to the release notes. |
| 35 | + |
| 36 | + If we find a problematic version of Npcap in the NSIS installer, tell |
| 37 | + the user that they should uninstall it manually. Link to the relevant |
| 38 | + section in the release notes. |
| 39 | + |
| 40 | + Bug: 16052 |
| 41 | + Change-Id: Ie8d811b5169ef253ffbd24a5f24a470b3a846e4f |
| 42 | + Reviewed-on: https://code.wireshark.org/review/34565 |
| 43 | + Reviewed-by: Gerald Combs < [email protected]> |
| 44 | + Petri-Dish: Gerald Combs < [email protected]> |
| 45 | + Tested-by: Petri Dish Buildbot |
| 46 | + Reviewed-by: Alexis La Goutte < [email protected]> |
| 47 | + |
| 48 | +commit ff5fc4ec4d |
| 49 | +Author: Aleksej Matis < [email protected]> |
| 50 | +Date: Wed Sep 18 20:39:06 2019 +0200 |
| 51 | + |
| 52 | + ieee80211: Fix nameclash in RM Report |
| 53 | + |
| 54 | + RM Report channel number and duration share the same abbreviation. |
| 55 | + Rename duration to wlan.measure.re[qp].duration. |
| 56 | + |
| 57 | + Change-Id: I0a24ffb69e1b0f1c81626ccaeaa7ce1675158465 |
| 58 | + Reviewed-on: https://code.wireshark.org/review/34562 |
| 59 | + Reviewed-by: Alexis La Goutte < [email protected]> |
| 60 | + Petri-Dish: Gerald Combs < [email protected]> |
| 61 | + Petri-Dish: Alexis La Goutte < [email protected]> |
| 62 | + Tested-by: Petri Dish Buildbot |
| 63 | + Reviewed-by: Anders Broman < [email protected]> |
| 64 | + (cherry picked from commit 6cb9f32cf2eb6ca3320dba4af5cad2f2f57f8309) |
| 65 | + Reviewed-on: https://code.wireshark.org/review/34563 |
| 66 | + |
| 67 | +commit 0b4f9e9a2b |
| 68 | +Author: Gerald Combs < [email protected]> |
| 69 | +Date: Mon Sep 16 08:45:56 2019 -0700 |
| 70 | + |
| 71 | + macOS: Don't clobber Wireshark.app during installation. |
| 72 | + |
| 73 | + Removing Wireshark.app during preflight is the wrong way to ensure that |
| 74 | + we uninstall old assets. |
| 75 | + |
| 76 | + Bug: 16050 |
| 77 | + Change-Id: I39a0129e29830f8b6bc7ef228f3886db51d963ec |
| 78 | + Reviewed-on: https://code.wireshark.org/review/34542 |
| 79 | + Reviewed-by: Gerald Combs < [email protected]> |
| 80 | + (cherry picked from commit 71b99dfa39c2f57b3adbb505c73f8a48de6c61f8) |
| 81 | + Reviewed-on: https://code.wireshark.org/review/34561 |
| 82 | + |
| 83 | +commit e0cfa5c657 |
| 84 | +Author: Mikael Kanstrup < [email protected]> |
| 85 | +Date: Wed Sep 18 14:25:12 2019 +0200 |
| 86 | + |
| 87 | + dot11crypt: Fix crash on failure finding GTK in decrypted frame |
| 88 | + |
| 89 | + If GTK cannot be found inside a successfully decrypted wireless frame |
| 90 | + the dot11crypt engine returns incorrect decrypted data length of 0 |
| 91 | + bytes. As the IEEE802.11 dissector does not check the length of the |
| 92 | + decrypted frame the number of bytes allocated and copied to wmem ends |
| 93 | + up being a negative number (i.e. a huge unsigned number). This results |
| 94 | + in a SIGSEGV crash while copying data. |
| 95 | + |
| 96 | + Fix this both by returning a correct length from dot11crypt engine |
| 97 | + and add extra an protection to the IEEE802.11 dissector if the length |
| 98 | + for any (other) reason still would end up being a negative number. |
| 99 | + |
| 100 | + Bug: 16058 |
| 101 | + Change-Id: I9d0d1cf50498dece2e008222eebbb3edc8f10159 |
| 102 | + Reviewed-on: https://code.wireshark.org/review/34558 |
| 103 | + Petri-Dish: Pascal Quantin < [email protected]> |
| 104 | + Tested-by: Petri Dish Buildbot |
| 105 | + Reviewed-by: Pascal Quantin < [email protected]> |
| 106 | + (cherry picked from commit 74bccadff2080a45b6758a355e3c7737409832c4) |
| 107 | + Reviewed-on: https://code.wireshark.org/review/34559 |
| 108 | + |
| 109 | +commit 5c80264032 |
| 110 | +Author: Gerald Combs < [email protected]> |
| 111 | +Date: Sun Sep 15 09:29:04 2019 +0000 |
| 112 | + |
| 113 | + [Automatic update for 2019-09-15] |
| 114 | + |
| 115 | + Update manuf, services enterprise numbers, translations, and other items. |
| 116 | + |
| 117 | + Change-Id: I647bfcb704283f0bf7fadc6a90605c1abd29f601 |
| 118 | + Reviewed-on: https://code.wireshark.org/review/34531 |
| 119 | + Reviewed-by: Gerald Combs < [email protected]> |
| 120 | + |
| 121 | +commit 021d581e9a |
| 122 | +Author: Evan Welsh < [email protected]> |
| 123 | +Date: Sat Sep 14 16:02:26 2019 -0400 |
| 124 | + |
| 125 | + Qt: Prevent crash in main window layout. |
| 126 | + |
| 127 | + Add length check for extra_sizes array in geometry calculations when using |
| 128 | + recent sizes, prevents crash in case where user creates a new user profile |
| 129 | + with a layout of 1) filled pane 2) empty pane 3) empty pane. |
| 130 | + |
| 131 | + Bug: 16048 |
| 132 | + Change-Id: I5f30d6e4148703504029efab75a77f2cdb6619ff |
| 133 | + Reviewed-on: https://code.wireshark.org/review/34524 |
| 134 | + Reviewed-by: Michael Mann < [email protected]> |
| 135 | + Petri-Dish: Michael Mann < [email protected]> |
| 136 | + Reviewed-by: Peter Wu < [email protected]> |
| 137 | + (cherry picked from commit c0224eeeb833c3ee0b2625c71b9915f13afadb23) |
| 138 | + Reviewed-on: https://code.wireshark.org/review/34527 |
| 139 | + Reviewed-by: Guy Harris < [email protected]> |
| 140 | + |
| 141 | +commit c9bfeb2a3b |
| 142 | +Author: Tomasz Moń < [email protected]> |
| 143 | +Date: Tue Sep 10 19:53:18 2019 +0200 |
| 144 | + |
| 145 | + randpktdump: Initialize print error handler |
| 146 | + |
| 147 | + When there is a problem with output pipe, randpktdump will call |
| 148 | + cfile_write_failure_message() which in turn calls cmdarg_err() which |
| 149 | + calls print_err. Call cmdarg_err_init() so print_err is not NULL. |
| 150 | + |
| 151 | + Change-Id: Ie459596a473c83204e9aa1d48bb2d2d3717b340a |
| 152 | + Reviewed-on: https://code.wireshark.org/review/34495 |
| 153 | + Petri-Dish: Michael Mann < [email protected]> |
| 154 | + Tested-by: Petri Dish Buildbot |
| 155 | + Reviewed-by: Michael Mann < [email protected]> |
| 156 | + (cherry picked from commit 4853fb93b2e64a882f233cd91743976075faf6da) |
| 157 | + Reviewed-on: https://code.wireshark.org/review/34525 |
| 158 | + Petri-Dish: Guy Harris < [email protected]> |
| 159 | + Reviewed-by: Guy Harris < [email protected]> |
| 160 | + |
| 161 | +commit 9541420798 |
| 162 | +Author: Jaap Keuter < [email protected]> |
| 163 | +Date: Sat Sep 14 09:42:57 2019 +0200 |
| 164 | + |
| 165 | + SNMP: handle Net-SNMP Engine Id of 12 octets |
| 166 | + |
| 167 | + The Net-SNMP code creates an Engine Id size based on the compilation |
| 168 | + size, either 8 or 12 octets long. Current implementation handles 32 bit |
| 169 | + compilation of Net-SNMP (resulting in 8 octets), this change adds |
| 170 | + handling of 64 bit compilation of Net-SNMP (resulting in 12 octets). |
| 171 | + |
| 172 | + Bug: 16051 |
| 173 | + Change-Id: I256f9a7ad2fd219492e4ebc413ef24cd2c210e0b |
| 174 | + Reviewed-on: https://code.wireshark.org/review/34520 |
| 175 | + Reviewed-by: Jaap Keuter < [email protected]> |
| 176 | + Petri-Dish: Jaap Keuter < [email protected]> |
| 177 | + Tested-by: Petri Dish Buildbot |
| 178 | + Reviewed-by: Michael Mann < [email protected]> |
| 179 | + (cherry picked from commit 608dbda8eeefeb1c79fd93c1848515d8bc6b4ca1) |
| 180 | + Reviewed-on: https://code.wireshark.org/review/34522 |
| 181 | + |
| 182 | +commit a1dd797cd4 |
| 183 | +Author: Gerald Combs < [email protected]> |
| 184 | +Date: Wed Sep 11 17:12:00 2019 -0700 |
| 185 | + |
| 186 | + Release notes: The Windows installers ship with Qt 5.12.5. |
| 187 | + |
| 188 | + Change-Id: I2fc89181d9a79c3d305c4f76ea6281dcc5c209f4 |
| 189 | + Reviewed-on: https://code.wireshark.org/review/34511 |
| 190 | + Reviewed-by: Gerald Combs < [email protected]> |
| 191 | + |
| 192 | +commit 99c612eb70 |
| 193 | +Author: Gerald Combs < [email protected]> |
| 194 | +Date: Wed Sep 11 15:45:17 2019 -0700 |
| 195 | + |
| 196 | + 3.0.4 → 3.0.5. |
| 197 | + |
| 198 | + Change-Id: I5af564dbf3c0ce971833837d5b0833aabcd33f2e |
| 199 | + Reviewed-on: https://code.wireshark.org/review/34509 |
| 200 | + Reviewed-by: Gerald Combs < [email protected]> |
0 commit comments