Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 463900 | Differences between
and this patch

Collapse All | Expand All

(-)a/API_generated/oyOption_s.c (-1 / +1 lines)
Lines 372-378 const char * oyOption_GetValueString(oyOption_s * obj, Link Here
372
{
372
{
373
  oyOption_s_ * s = (oyOption_s_*)obj;
373
  oyOption_s_ * s = (oyOption_s_*)obj;
374
  int error = !s,
374
  int error = !s,
375
      n;
375
      n = 0;
376
  const char * result = 0;
376
  const char * result = 0;
377
377
378
  if(!s)
378
  if(!s)
(-)a/oyranos_io_core.c (-1 / +1 lines)
Lines 262-268 char * oyReadUrlToMem_ ( const char * url, Link Here
262
{
262
{
263
  char * text = 0;
263
  char * text = 0;
264
  char * command = 0;
264
  char * command = 0;
265
  FILE * fp;
265
  FILE * fp = 0;
266
266
267
  if(url && strlen(url) && size )
267
  if(url && strlen(url) && size )
268
  {
268
  {
(-)a/oyranos_string.c (-3 / +1 lines)
Lines 184-196 int oyStringFromData_ ( const oyPointer ptr, Link Here
184
{
184
{
185
  const char * text = (const char*) ptr;
185
  const char * text = (const char*) ptr;
186
  char * text_tmp = 0;
186
  char * text_tmp = 0;
187
  int j,
187
  int j = 0,
188
      error = 0;
188
      error = 0;
189
189
190
  if(ptr && size)
190
  if(ptr && size)
191
  {
191
  {
192
    j = 0;
193
194
    while(j < size)
192
    while(j < size)
195
      if(!isprint( text[j] ) && !isspace( text[j] ))
193
      if(!isprint( text[j] ) && !isspace( text[j] ))
196
      {
194
      {
(-)a/oyjl/oyjl_tree_parse.c (-2 / +1 lines)
Lines 213-219 oyjl_tree_parse_context_s * oyjl_tree_parse_context_new( void ) Link Here
213
  if(!error)
213
  if(!error)
214
  {
214
  {
215
    memset(s, 0, sizeof(oyjl_tree_parse_context_s));
215
    memset(s, 0, sizeof(oyjl_tree_parse_context_s));
216
    strcpy(s->type,"yopc");
216
    memcpy(s->type,"yopc",4);
217
  }
217
  }
218
  return s;
218
  return s;
219
}
219
}
220
- 

Return to bug 463900