Changeset 11d9630 in mainline


Ignore:
Timestamp:
2017-09-25T19:41:35Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d6bcc8c
Parents:
75c3830
Message:

Fix handling of empty table cells.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/table.c

    r75c3830 r11d9630  
    496496        sp = str;
    497497        while (*sp != '\0' && table->error == EOK) {
    498                 ep = sp + 1;
     498                ep = sp;
    499499                while (*ep != '\0' && *ep != '\t' && *ep != '\n')
    500500                        ++ep;
Note: See TracChangeset for help on using the changeset viewer.