File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ PHP NEWS
5
5
- GD:
6
6
. Fixed bug #77391 (1bpp BMPs may fail to be loaded). (Romain Déoux, cmb)
7
7
8
+ - MySQLnd:
9
+ . Fixed bug #75684 (In mysqlnd_ext_plugin.h the plugin methods family has
10
+ no external visibility). (Anatol)
11
+
8
12
- Sockets:
9
13
. Fixed bug #76839 (socket_recvfrom may return an invalid 'from' address
10
14
on MacOS). (Michael Meyer)
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ struct st_mysqlnd_plugin__plugin_area_getters
35
35
void * * (* get_vio_area )(const MYSQLND_VIO * vio , const unsigned int plugin_id );
36
36
};
37
37
38
- extern struct st_mysqlnd_plugin__plugin_area_getters mysqlnd_plugin_area_getters ;
38
+ PHPAPI extern struct st_mysqlnd_plugin__plugin_area_getters mysqlnd_plugin_area_getters ;
39
39
40
40
#define mysqlnd_plugin_get_plugin_connection_data (c , p_id ) mysqlnd_plugin_area_getters.get_connection_area((c), (p_id))
41
41
#define mysqlnd_plugin_get_plugin_connection_data_data (c , p_id ) mysqlnd_plugin_area_getters.get_connection_data_area((c), (p_id))
@@ -124,7 +124,7 @@ struct st_mysqlnd_plugin_methods_xetters
124
124
} command_factory ;
125
125
};
126
126
127
- extern struct st_mysqlnd_plugin_methods_xetters mysqlnd_plugin_methods_xetters ;
127
+ PHPAPI extern struct st_mysqlnd_plugin_methods_xetters mysqlnd_plugin_methods_xetters ;
128
128
129
129
130
130
#define mysqlnd_object_factory_get_methods () mysqlnd_plugin_methods_xetters.object_factory.get()
You can’t perform that action at this time.
0 commit comments