zabbix/CVE-2022-35230.patch
Boris Manojlovic f4b8e7ae14 Accepting request 990742 from home:bmanojlovic:branches:server:monitoring:zabbix
- add CVE-2022-35230 patch file CVE-2022-35230.patch 
- updated to latest release 4.0.42
- New Features and Improvements
  + ZBXNEXT-7694 Added "utf8mb3" character set support for MySQL database
  + ZBX-20946 Enabled Bulgarian, Chinese (zh_TW), German, Greek, Indonesian,
    Romanian, Spanish and Vietnamese languages in frontend
- Bug Fixes
  + ZBX-21123 Fixed crash when VMware VC was not available at the first moment when starting zabbix_server
  + ZBX-21137 Fixed VMware collector crash related to datastore state disconnected from all HVs
  + ZBX-20600 Fixed vmware hv.datastore.latency item when multiple datastores with duplicate name
  + ZBX-20844 Fixed external check becoming unsupported when Zabbix server or Zabbix proxy is stopped

OBS-URL: https://build.opensuse.org/request/show/990742
OBS-URL: https://build.opensuse.org/package/show/server:monitoring:zabbix/zabbix?expand=0&rev=37
2022-07-22 23:17:29 +00:00

16 lines
577 B
Diff

Index: frontends/php/include/views/configuration.graph.edit.php
===================================================================
--- frontends/php/include/views/configuration.graph.edit.php.orig 2022-06-28 08:59:47.000000000 +0200
+++ frontends/php/include/views/configuration.graph.edit.php 2022-07-23 01:04:16.970847088 +0200
@@ -409,6 +409,10 @@ $items_table->addRow(
);
foreach ($this->data['items'] as $n => $item) {
+ if (!$item['itemid']) {
+ continue;
+ }
+
$name = $item['host'].NAME_DELIMITER.$item['name_expanded'];
if (zbx_empty($item['drawtype'])) {