Ticket #36366: patch-src-common-globals.c.diff

File patch-src-common-globals.c.diff, 712 bytes (added by ryandesign (Ryan Carsten Schmidt), 10 years ago)
  • src/common/globals.c

    old new  
    2828/**
    2929 * @brief Global xine instance
    3030 */
    31 xine_t *__xineui_global_xine_instance;
     31xine_t *__xineui_global_xine_instance = NULL;
    3232
    3333/**
    3434 * @brief Configuration file name
    3535 */
    36 char *__xineui_global_config_file;
     36char *__xineui_global_config_file = NULL;
    3737
    3838/**
    3939 * @brief Verbosity level for the xine fronend
    4040 */
    41 int __xineui_global_verbosity;
     41int __xineui_global_verbosity = 0;
    4242
    4343#ifdef HAVE_LIRC
    4444/**
    4545 * @brief Boolean flag to check if LIRC support is enabled at runtime.
    4646 */
    47 int __xineui_global_lirc_enable;
     47int __xineui_global_lirc_enable = 0;
    4848#endif