[Libreoffice-commits] core.git: vcl/workben

Caolán McNamara caolanm at redhat.com
Tue Oct 17 08:16:42 UTC 2017


 vcl/workben/olefuzzer.cxx |    9 +++++++++
 1 file changed, 9 insertions(+)

New commits:
commit aae1907150e22a44b1463096ba4ecaec499b6bb0
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Oct 17 09:15:44 2017 +0100

    ole fuzzer needs more services
    
    Change-Id: I5b09edb9c3012dfa282077ea537cf8cbe4ce23d0

diff --git a/vcl/workben/olefuzzer.cxx b/vcl/workben/olefuzzer.cxx
index 90caf7659f42..7193a0292575 100644
--- a/vcl/workben/olefuzzer.cxx
+++ b/vcl/workben/olefuzzer.cxx
@@ -13,6 +13,12 @@
 #include <config_features.h>
 #include <osl/detail/component-mapping.h>
 
+extern "C" {
+void * com_sun_star_comp_uui_UUIInteractionHandler_get_implementation( void *, void * );
+void * com_sun_star_i18n_CharacterClassification_Unicode_get_implementation( void *, void * );
+void * com_sun_star_i18n_CharacterClassification_get_implementation( void *, void * );
+}
+
 const lib_to_factory_mapping *
 lo_get_factory_map(void)
 {
@@ -27,6 +33,9 @@ const lib_to_constructor_mapping *
 lo_get_constructor_map(void)
 {
     static lib_to_constructor_mapping map[] = {
+        { "com_sun_star_comp_uui_UUIInteractionHandler_get_implementation", com_sun_star_comp_uui_UUIInteractionHandler_get_implementation },
+        { "com_sun_star_i18n_CharacterClassification_Unicode_get_implementation", com_sun_star_i18n_CharacterClassification_Unicode_get_implementation },
+        { "com_sun_star_i18n_CharacterClassification_get_implementation", com_sun_star_i18n_CharacterClassification_get_implementation },
         { 0, 0 }
     };
 


More information about the Libreoffice-commits mailing list