Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unused variable | Tomas Popela | 2019-01-21 | 1 | -1/+0 |
| | | | | | | | | | | | 4. yelp-3.28.1/libyelp/yelp-info-parser.c:959:2: note: Value stored to 'pages' is never read pages = 0; ^ ~ 957| (GDestroyNotify) gtk_tree_iter_free); 958| 959|-> pages = 0; 960| for (ptr = page_list; *ptr != NULL; ptr++) 961| { | ||||
* | Fix a use of an uninitialized variable | Tomas Popela | 2019-01-21 | 1 | -1/+1 |
| | | | | | | | | | | yelp-3.28.1/libyelp/yelp-info-parser.c:1174: var_decl: Declaring variable "menu_node" without initializer. yelp-3.28.1/libyelp/yelp-info-parser.c:1310: uninit_use: Using uninitialized value "menu_node". 1308| else if (*(menuitems[i]) != '\0') { 1309| tmp = g_strconcat ("\n", first_non_space (menuitems[i]), NULL); 1310|-> xmlNewTextChild (mholder ? mholder : menu_node, 1311| NULL, BAD_CAST "para1", 1312| BAD_CAST tmp); | ||||
* | Check whether variable node is set before dereferencing it | Tomas Popela | 2019-01-21 | 1 | -2/+2 |
| | | | | yelp-3.28.1/libyelp/yelp-info-parser.c:766: dereference: Dereferencing a pointer that might be null "node" when calling "strncmp". | ||||
* | Make yelp_info_parse_menu() static | David King | 2015-10-16 | 1 | -2/+2 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=756658 | ||||
* | Fix sign comparison warning | David King | 2015-02-09 | 1 | -4/+4 |
| | |||||
* | Avoid warnings from mixing declarations and code | David King | 2015-02-09 | 1 | -11/+22 |
| | |||||
* | Fix unused variable warnings | David King | 2015-02-09 | 1 | -1/+1 |
| | |||||
* | libyelp: Make some private functions static | David King | 2015-01-28 | 1 | -5/+5 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=720577 | ||||
* | Updated FSF's address | Daniel Mustieles | 2014-01-31 | 1 | -3/+1 |
| | |||||
* | Fix crash on opening any .info doc | Edward Sheldrake | 2011-09-05 | 1 | -3/+3 |
| | | | | g_hash_table_lookup_extended was being called with an incorrect argument. | ||||
* | Fix crash due to access after free | Edward Sheldrake | 2011-09-05 | 1 | -1/+2 |
| | | | | "next" may point to somewhere inside "url". | ||||
* | Rewrite the way we read in the info file & calculate nodes' offsets. | Rupert Swarbrick | 2011-05-03 | 1 | -164/+134 |
| | | | | | | This fixes a bug with how node2offset, offsets2pages etc. were calculated when reading in a file with an indirect map. It also makes the logic much simpler and (I think) the code is no less efficient. | ||||
* | Fix get_value_after in yelp-info-parser.c | Rupert Swarbrick | 2011-05-03 | 1 | -26/+43 |
| | | | | | As it was, this was returning silly things for at least the last page of each info file. Also, it had unneccesary string copying. | ||||
* | Menu formatting. | Rupert Swarbrick | 2010-09-15 | 1 | -8/+30 |
| | | | | | | Checks for general whitespace in menus, so no longer gets confused by tabs. Also, doesn't write the link text twice if the description is identical. | ||||
* | Render multi-line links correctly. | Rupert Swarbrick | 2010-09-15 | 1 | -33/+17 |
| | |||||
* | Parse info files into paragraphs (separated by blank lines). | Rupert Swarbrick | 2010-09-15 | 1 | -212/+242 |
| | |||||
* | Display menus as <ul>'s, rather than the original text. | Rupert Swarbrick | 2010-09-15 | 1 | -17/+70 |
| | |||||
* | Support for headings in info files. | Rupert Swarbrick | 2010-09-15 | 1 | -20/+153 |
| | |||||
* | [libyelp] Adding man page support, some formatting still off | Shaun McCance | 2010-06-01 | 1 | -5/+0 |
| | |||||
* | [info2html] Link trails in info documents | Shaun McCance | 2010-04-27 | 1 | -2/+11 |
| | |||||
* | [libyelp] Adding info documents; still a few problems, but it mostly works | Shaun McCance | 2010-04-26 | 1 | -0/+1298 |