Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorAndrejs Kozlovs <andrejs.kozlovs@zabbix.com>2021-01-12 17:15:46 +0300
committerAndrejs Kozlovs <andrejs.kozlovs@zabbix.com>2021-01-13 18:04:33 +0300
commitc695a4e7d01966bb77d6f368385923f96223b570 (patch)
tree83bc65f06ec41249eaba9c0721e5aaf8570fda2a /misc
parent51479783a8bcab55e3b49b9f597b8e8a637b58ee (diff)
....I..... [ZBXNEXT-6285] fixed buffer size
Diffstat (limited to 'misc')
-rw-r--r--misc/images/images_oracle_start.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/images/images_oracle_start.txt b/misc/images/images_oracle_start.txt
index 74c638fcaa4..71bd39fd720 100644
--- a/misc/images/images_oracle_start.txt
+++ b/misc/images/images_oracle_start.txt
@@ -4,7 +4,7 @@ CREATE OR REPLACE FUNCTION base64_decode(p_content CLOB) RETURN BLOB
C_CHUNK_SIZE CONSTANT INTEGER := 4000; -- should be a multiple of 4
C_NON_BASE64_SYM_PATTERN CONSTANT VARCHAR2(20) := '[^A-Za-z0-9+/]';
l_chunk_buf VARCHAR2(4000);
- l_chunk_b64_buf RAW(9000);
+ l_chunk_b64_buf RAW(3000);
l_chunk_offset INTEGER := 1;
l_chunk_size INTEGER;
l_res BLOB;