IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2017, 12:47:22 PM (9 years ago)
Author:
eugene
Message:

mostly harmless changes to track down dvopsps segfaults: watch out for Bzero,Bscale in F_set_column.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ohana.20170809/src/libfits/header/F_scan.c

    r39324 r40113  
    8989  // XXX is this safe for 64bit off_t and 32bit off_t?
    9090  // XXX the problem is that we read FITS files on many machine types: I need to ensure
    91   // that we are portable -- this sseems inconsistent
     91  // that we are portable -- this seems inconsistent
    9292  if (!strcmp (mode, "%jd"))  { *va_arg (argp, intmax_t *)           = value; return (TRUE); }
    9393
     
    168168  /* all others require '=' in column p + 1 + strlen(field) */
    169169  Nfield = strlen (field);
    170   if (p[Nfield + 1] != '=') return (FALSE);
     170  if (p[Nfield + 1] != '=') return (FALSE); // probably redundant since gfits_header_hierarch_field requires this condition
    171171
    172172  /* comment from data line */
Note: See TracChangeset for help on using the changeset viewer.