Home | History | Annotate | Download | only in applypatch

Lines Matching refs:bonus

103     Value* bonus = NULL;
107 printf("failed to load bonus file %s\n", argv[2]);
110 bonus = malloc(sizeof(Value));
111 bonus->type = VAL_BLOB;
112 bonus->size = fc.size;
113 bonus->data = (char*)fc.data;
138 num_patches, sha1s, patches, bonus);
148 if (bonus) {
149 free(bonus->data);
150 free(bonus);
185 "usage: %s [-b <bonus-file>] <src-file> <tgt-file> <tgt-sha1> <tgt-size> "