search for: empty_str

Displaying 8 results from an estimated 8 matches for "empty_str".

Did you mean: empty_r
2018 Mar 19
1
Inconsistency, may be bug in read.delim ?
Dear friends, I stumbled into beheaviour of read.delim which I would consider a bug or at least an inconsistency that should be improved upon. Recently we had to work with data that used "", two double quotes, as symbol to start and end character input. Essentially the data looked like this data.csv ======== V1, V2, V3 ""data"", 3, """" The
2011 Mar 16
0
[GIT PULL] elflink compiler warning fixes
...le.inc -char *default_cmd = NULL; //"default" command line -char *onerror = NULL; //"onerror" command line +const char *default_cmd = NULL; //"default" command line +const char *onerror = NULL; //"onerror" command line /* Empty refstring */ const char *empty_string; @@ -75,7 +75,7 @@ long long totaltimeout = 0; /* Keep track of global default */ static int has_ui = 0; /* DEFAULT only counts if UI is found */ -extern char *globaldefault; +extern const char *globaldefault; static bool menusave = false; /* True if there is any "menu save" */...
2012 May 04
3
[GIT PULL] elflink fixes
...eadconfig.c @@ -68,6 +68,7 @@ short nohalt = 1; //idle.inc const char *default_cmd = NULL; //"default" command line const char *onerror = NULL; //"onerror" command line +const char *ontimeout = NULL; //"ontimeout" command line /* Empty refstring */ const char *empty_string; @@ -79,6 +80,7 @@ struct menu *root_menu, *start_menu, *hide_menu, *menu_list, *default_menu; int shiftkey = 0; /* Only display menu if shift key pressed */ int hiddenmenu = 0; long long totaltimeout = 0; +unsigned int kbdtimeout = 0; /* Keep track of global default */ static int has_ui...
2010 Oct 02
4
[PATCH 0/4] some fixes on elflink branch
This is a small set of patches for elflink branch based on feng's elflink branch. hpa, It seems that I can't log on terminus by ssh at home. So I can't push these patches on my git tree. Liu Aleaxander (4): elflink: Cleanup some warnings elflink: Fix the wrong malloc size in enter_cmdline elflink: Do clear screen even if we have no pDraw_Menu method elflink: Add Ctrl-p +
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2019 May 24
3
[PATCH] (vesa)menu.c32: Add support for BLS
...rent.h> #include <syslinux/adv.h> #include <syslinux/config.h> #include "menu.h" +/* BLS entry global settings */ +#define BLS_CHUNK 16 +int bls_version_places = 3; +char *bls_sort_by = "machine-id version title"; + /* Empty refstring */ const char *empty_string; @@ -1060,6 +1066,337 @@ do_include: } } +/* + * https://systemd.io/BOOT_LOADER_SPECIFICATION + * #type-1-boot-loader-specification-entries + */ +struct blsdata { + const char *title; + const char *version; + char *version0; /* version string padded with zeros */ + const ch...
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...BLS1 entry global settings */ +char *bls1_labelf = NULL; +char *bls1_format = NULL; +char *bls1_sortby = NULL; +char *bls1_pinmin = NULL; +char *bls1_pinmax = NULL; +int bls1_padver = BLS1_PADVER; +int bls1_ascend = BLS1_ASCEND; +int bls1_shwlbl = BLS1_SHWLBL; /* Empty refstring */ const char *empty_string; @@ -597,6 +609,7 @@ static unsigned int ipappend = 0; static struct labeldata ld; static int parse_one_config(const char *filename); +static int parse_bls1_dir(const char *dirname); static char *is_kernel_type(char *cmdstr, enum kernel_type *type) { @@ -1057,7 +1070,312 @@ do_include:...
2008 Feb 22
0
Wine release 0.9.56
...for the off-by-one fixing behaviour of RegSetValueExA and RegSetValueExW. shell32: Fix the logic in Control_LoadApplet determining when to use CPL_INQUIRE and when to use CPL_NEWINQUIRE. wininet: Fix potential buffer overrun in HttpQueryInfoA. browseui: Fix typo in declaration of empty_string in set_buffer. comdlg32: Fix potential buffer overrun of lpxx->lfFaceName in CFn_WMCommand. comdlg32: Fix the character length passed into GetDlgItemTextW in PRINTDLG_PS_UpdateDlgStructW. advapi32: Fix the AccessCheck tests so that the ACCESS_SYSTEM_SECURITY test now runs (w...