We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68a901 commit 781a417Copy full SHA for 781a417
ext/libxml/php_libxml2.def
@@ -1547,3 +1547,5 @@ xmlXPtrWrapLocationSet
1547
xmlBufContent
1548
xmlBufUse
1549
xmlBufferDetach
1550
+xmlOutputBufferGetContent
1551
+xmlOutputBufferGetSize
ext/soap/config.w32
@@ -13,10 +13,6 @@ if (PHP_SOAP != "no") {
13
14
if (!PHP_SOAP_SHARED) {
15
ADD_FLAG('CFLAGS_SOAP', "/D LIBXML_STATIC ");
16
- } else {
17
- if (!CHECK_LIB('libxml2.lib', 'soap')) {
18
- WARNING("soap support can't be enabled, libxml is not found");
19
- }
20
}
21
} else {
22
WARNING("soap not enabled, libxml not found");
ext/soap/php_wss.c
@@ -120,9 +120,9 @@ void add_wss_to_function_call(zval *this_ptr, int soap_version, xmlNodePtr envel
120
{
121
char random_s[10];
122
if (Z_TYPE_P(Z_CLIENT_WSS_RANDOM_ID_P(this_ptr)) == IS_TRUE) {
123
- sprintf(random_s, "%d", (int)php_mt_rand_common(100000000,999999999));
+ slprintf(random_s, sizeof(random_s), "%d", (int)php_mt_rand_common(100000000,999999999));
124
125
- sprintf(random_s, "%d", 1);
+ slprintf(random_s, sizeof(random_s), "%d", 1);
126
127
128
zend_string *body_id = zend_string_concat2(
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments