Changeset 97cf049 in mainline
- Timestamp:
- 2020-04-29T19:24:54Z (5 years ago)
- Parents:
- 14a014f
- git-author:
- Manuele Conti <manuele.conti@…> (2020-04-29 19:20:50)
- git-committer:
- Manuele Conti <manuele.conti@…> (2020-04-29 19:24:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/edit/edit.c
r14a014f r97cf049 791 791 792 792 buf_size *= 2; 793 buf = realloc(buf, buf_size); 794 if (buf == NULL) 793 char *tmp = realloc(buf, buf_size); 794 if (tmp == NULL) { 795 free(buf); 795 796 return NULL; 797 } 798 buf = tmp; 796 799 } 797 800
Note:
See TracChangeset
for help on using the changeset viewer.