Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: third_party/yasm/patched-yasm/libyasm/bytecode.c

Issue 6170009: Update our yasm copy to yasm 1.1.0 (Part 1: yasm side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/yasm/patched-yasm/libyasm/bytecode.c
===================================================================
--- third_party/yasm/patched-yasm/libyasm/bytecode.c (revision 71129)
+++ third_party/yasm/patched-yasm/libyasm/bytecode.c (working copy)
@@ -25,7 +25,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "util.h"
-/*@unused@*/ RCSID("$Id: bytecode.c 2130 2008-10-07 05:38:11Z peter $");
+/*@unused@*/ RCSID("$Id: bytecode.c 2233 2009-10-31 21:45:55Z peter $");
#include "libyasm-stdint.h"
#include "coretype.h"
@@ -309,10 +309,12 @@
long i;
int error = 0;
- if (yasm_bc_get_multiple(bc, &bc->mult_int, 1) || bc->mult_int == 0) {
+ long mult;
+ if (yasm_bc_get_multiple(bc, &mult, 1) || mult == 0) {
*bufsize = 0;
return NULL;
}
+ bc->mult_int = mult;
/* special case for reserve bytecodes */
if (bc->callback->special == YASM_BC_SPECIAL_RESERVE) {
« no previous file with comments | « third_party/yasm/patched-yasm/frontends/yasm/yasm-options.c ('k') | third_party/yasm/patched-yasm/libyasm/errwarn.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698